12 lines
340 B
C#
Raw Permalink Normal View History

2022-02-10 00:44:02 +05:30
namespace POCDistance.Models
{
public class LocationModel
{
public string ZipCode { get; set; }
public double Latitute { get; set; }
public double Longitude { get; set; }
public string City { get; set; }
public string Country { get; set; }
public string State { get; set; }
}
}