Parse geloc_postal_code values

This commit is contained in:
Jeff Leung 2024-01-04 23:41:43 -08:00
parent fec33bff1d
commit 16ee1f98ed
1 changed files with 2 additions and 0 deletions

View File

@ -26,6 +26,8 @@ namespace AS1024.GeoFeed.Models
public bool? GeolocHasLocation { get; set; } public bool? GeolocHasLocation { get; set; }
[JsonProperty("geoloc_region")] [JsonProperty("geoloc_region")]
public string? GeolocRegion { get; set; } public string? GeolocRegion { get; set; }
[JsonProperty("geoloc_postal_code")]
public string? GeolocPostalCode { get; set; }
} }