/*********************************************************************** * Project: baifenBinfa * ProjectName: 百分兵法管理系统 * Web: http://chuanyin.com * Author: * Email: * CreateTime: 202403/02 * Description: 暂无 ***********************************************************************/ using System; namespace CoreCms.Net.Model.ViewModels.LogInfo { /// /// 日志实体 /// public class LogInfo { public DateTime Datetime { get; set; } public string Content { get; set; } public string IP { get; set; } public string LogColor { get; set; } public int Import { get; set; } = 0; } }