You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
504 B
22 lines
504 B
using System.Runtime.Serialization;
|
|
|
|
namespace SiaSun.LMS.Model
|
|
{
|
|
/// <summary>
|
|
/// 服务端通用返回信息
|
|
/// </summary>
|
|
[DataContract]
|
|
public class ServiceMessage
|
|
{
|
|
/// <summary>
|
|
/// 用于索引多语言资源的键
|
|
/// </summary>
|
|
[DataMember]
|
|
public string Key { get; set; }
|
|
/// <summary>
|
|
/// 输出的相关参数
|
|
/// </summary>
|
|
[DataMember]
|
|
public object[] Params { get; set; }
|
|
}
|
|
}
|