27 lines
567 B
C#
27 lines
567 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Threading.Tasks;
|
|||
|
|
|
|||
|
|
namespace LangGuan.Command.Model
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// Api返回结果
|
|||
|
|
/// </summary>
|
|||
|
|
public class ApiResult
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// code=0成功。1失败
|
|||
|
|
/// </summary>
|
|||
|
|
public int code { get; set; }
|
|||
|
|
/// <summary>
|
|||
|
|
/// 结果
|
|||
|
|
/// </summary>
|
|||
|
|
public object data { get; set; }
|
|||
|
|
/// <summary>
|
|||
|
|
/// 消息
|
|||
|
|
/// </summary>
|
|||
|
|
public string msg { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|