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.

18 lines
560 B

  1. namespace Swift.DAL.Common
  2. {
  3. public class Location
  4. {
  5. public string errorCode { get; set; }
  6. public string errorMsg { get; set; }
  7. public string CountryName { get; set; }
  8. public string CountryCode { get; set; }
  9. public string City { get; set; }
  10. public string Region { get; set; }
  11. public string Lat { get; set; }
  12. public string Long { get; set; }
  13. public string TimeZone { get; set; }
  14. public string ZipCode { get; set; }
  15. public string IpAddress { get; set; }
  16. }
  17. }