Location.cs 254 B

12345678910
  1. namespace AdaptTablet.ErgastAPI.Model
  2. {
  3. public class Location
  4. {
  5. public string Lat { get; set; }
  6. public string @long { get; set; }
  7. public string Locality { get; set; }
  8. public string Country { get; set; }
  9. }
  10. }