/*********************************************************************** * Project: CoreCms * ProjectName: 核心内容管理系统 * Web: https://www.corecms.net * Author: 大灰灰 * Email: jianweie@163.com * CreateTime: 2021/1/31 21:45:10 * Description: 暂无 ***********************************************************************/ namespace CoreCms.Net.Model.ViewModels.UI { /// /// LayUIAdmin后端UI回调Json实体 /// public class AdminUiCallBack { /// /// 状态码(ok = 0, error = 1, timeout = 401) /// public int code { get; set; } = 1; /// /// 可选。信息内容。 /// public string msg { get; set; } = "空数据返回"; public object data { get; set; } public object otherData { get; set; } public int count { get; set; } } }