namespace NPin.Framework.Upms.Domain.Shared.Etos;
///
/// 用户登录事件参数
///
public class LoginEventArgs
{
public Guid UserId { get; set; }
public string Username { get; set; }
public string Nickname { get; set; }
public DateTime CreationTime { get; set; }
///
/// 登录地点
///
public string? LoginLocation { get; set; }
///
/// 登录Ipv4地址
///
public string? LoginIPv4 { get; set; }
///
/// 登录Ipv6地址,仅当支持Ipv6时有值
///
public string? LoginIPv6 { get; set; }
///
/// 登录浏览器
///
public string? Browser { get; set; }
///
/// 操作系统
///
public string? Os { get; set; }
///
/// 登录信息
///
public string? LoginMsg { get; set; }
}