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.

50 lines
2.0 KiB

  1. 
  2. namespace Swift.DAL.SwiftDAL
  3. {
  4. public class UserDetails
  5. {
  6. public string logId { get; set; }
  7. public string UserUniqueKey { get; set; }
  8. public string ErrorCode { get; set; }
  9. public string Msg { get; set; }
  10. public string UserId { get; set; }
  11. public string FullName { get; set; }
  12. public string Address { get; set; }
  13. public int AttemptCount { get; set; }
  14. public string LastLoginTs { get; set; }
  15. public string UserAccessLevel { get; set; }
  16. public string Branch { get; set; }
  17. public string BranchName { get; set; }
  18. public string UserType { get; set; }
  19. public string isForcePwdChanged { get; set; }
  20. public string sessionTimeOut { get; set; }
  21. public string Agent { get; set; }
  22. public string AgentName { get; set; }
  23. public string SuperAgent { get; set; }
  24. public string SuperAgentName { get; set; }
  25. public string SettlingAgent { get; set; }
  26. public string MapCodeInt { get; set; }
  27. public string ParentMapCodeInt { get; set; }
  28. public string MapCodeDom { get; set; }
  29. public string AgentType { get; set; }
  30. public string Id { get; set; }
  31. public string Country { get; set; }
  32. public string CountryId { get; set; }
  33. public string IsActAsBranch { get; set; }
  34. public string FromSendTrnTime { get; set; }
  35. public string ToSendTrnTime { get; set; }
  36. public string FromPayTrnTime { get; set; }
  37. public string ToPayTrnTime { get; set; }
  38. public string ParentId { get; set; }
  39. public string IsHeadOffice { get; set; }
  40. public string newBranchId { get; set; }
  41. public string AgentLocation { get; set; }
  42. public string AgentGrp { get; set; }
  43. public string AgentEmail { get; set; }
  44. public string AgentPhone { get; set; }
  45. public string LoggedInCountry { get; set; }
  46. public string LoginAddress { get; set; }
  47. }
  48. }