(精华)2020年6月26日 C#类库model AjaxResult

namespace Coldairarrow.Util
{
    /// 
    /// Ajax请求结果
    /// 
    public class AjaxResult
    {
        /// 
        /// 是否成功
        /// 
        public bool Success { get; set; } = true;

        /// 
        /// 错误代码
        /// 
        public int ErrorCode { get; set; }

        /// 
        /// 返回消息
        /// 
        public string Msg { get; set; }
    }
}

你可能感兴趣的:(#,C#类库model)