namespace XFEExtension.NetCore.ServerInteractive.Models.UserModels;
///
/// 用户登录模型
///
public class UserLoginModel
{
///
/// 用户ID
///
public string Uid { get; set; } = string.Empty;
///
/// 上一次登录IP
///
public string LastIPAddress { get; set; } = string.Empty;
///
/// 电脑配置信息
///
public string DeviceInfo { get; set; } = string.Empty;
///
/// 登录到期时间
///
public DateTime EndDateTime { get; set; } = DateTime.MinValue;
}