using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using SqlSugar;
namespace Yi.Framework.Rbac.Domain.Shared.Etos
{
public class LoginEventArgs
{
public Guid UserId { get; set; }
public string UserName { get; set; }
public DateTime CreationTime { get; set; }
///
/// 登录地点
///
public string? LoginLocation { get; set; }
///
/// 登录Ip
///
public string? LoginIp { get; set; }
///
/// 浏览器
///
public string? Browser { get; set; }
///
/// 操作系统
///
public string? Os { get; set; }
///
/// 登录信息
///
public string? LogMsg { get; set; }
}
}