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.
23 lines
533 B
23 lines
533 B
using System.Runtime.Serialization;
|
|
|
|
namespace SiaSun.LMS.Model
|
|
{
|
|
/// <summary>
|
|
/// 服务端通用返回实体
|
|
/// </summary>
|
|
[DataContract]
|
|
public class ServiceResponse
|
|
{
|
|
/// <summary>
|
|
/// 方法的返回类型
|
|
/// </summary>
|
|
[DataMember]
|
|
public object Result { get; set; }
|
|
/// <summary>
|
|
/// 方法的其他输出参数
|
|
/// 实现out的功能
|
|
/// </summary>
|
|
[DataMember]
|
|
public object[] Params { get; set; }
|
|
}
|
|
}
|