You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
853 B

  1. using System;
  2. namespace Swift.web.SwiftSystem.UserManagement.ApplicationUserPool
  3. {
  4. public class LoggedInUser
  5. {
  6. public int UserId { get; set; }
  7. public string UserName { get; set; }
  8. public string UserFullName { get; set; }
  9. public DateTime LoginTime { get; set; }
  10. public string UserAccessLevel { get; set; }
  11. public string IPAddress { get; set; }
  12. public string Browser { get; set; }
  13. public int SessionTimeOutPeriod { get; set; }
  14. public string UserAgentName { get; set; }
  15. public DateTime LastLoginTime { get; set; }
  16. public DateTime LastActiveTime { get; set; }
  17. public string SessionID { get; set; }
  18. public string DcInfo { get; set; }
  19. public string LoggedInCountry { get; set; }
  20. public string LoginAddress { get; set; }
  21. }
  22. }