namespace YD_Event.Application.Logging.Dtos;
public class SigninLogPageOutput
{
///
/// 日志ID
///
public long Id { get; set; }
///
/// 消息
///
public string Message { get; set; }
///
/// ip地址
///
public string RemoteIp { get; set; }
///
/// 地理位置
///
public string Location { get; set; }
///
/// 客户端系统信息
///
public string OsDescription { get; set; }
///
/// 客户端浏览器信息
///
public string UserAgent { get; set; }
///
/// 登录时间
///
public DateTime CreatedTime { get; set; }
///
/// 登录人账户名
///
public string Account { get; set; }
}