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

namespace Swift.DAL.Common
{
public class Location
{
public string errorCode { get; set; }
public string errorMsg { get; set; }
public string CountryName { get; set; }
public string CountryCode { get; set; }
public string City { get; set; }
public string Region { get; set; }
public string Lat { get; set; }
public string Long { get; set; }
public string TimeZone { get; set; }
public string ZipCode { get; set; }
public string IpAddress { get; set; }
}
}