/***********************************************************************
|
* Project: baifenBinfa
|
* ProjectName: 百分兵法管理系统
|
* Web: http://chuanyin.com
|
* Author:
|
* Email:
|
* CreateTime: 202403/02
|
* Description: 暂无
|
***********************************************************************/
|
|
|
using System;
|
|
namespace CoreCms.Net.Model.ViewModels.LogInfo
|
{
|
/// <summary>
|
/// 日志实体
|
/// </summary>
|
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;
|
}
|
}
|