diff --git a/Backend/Models/WeatherAPIJob.cs b/Backend/Models/WeatherAPIJob.cs index 338b809..ed653e7 100644 --- a/Backend/Models/WeatherAPIJob.cs +++ b/Backend/Models/WeatherAPIJob.cs @@ -266,9 +266,78 @@ namespace Backend.Models #endregion + #region 新架構 weather api + public class Root3 + { + public string Success { get; set; } + public Records3 Records { get; set; } + } + public class Records3 + { + public string DatasetDescription { get; set; } + public string LocationsName { get; set; } + public string Dataid { get; set; } + public List Locations { get; set; } + } + public class Locations3 + { + public List Location { get; set; } + } + public class Location3 + { + public string LocationName { get; set; } + public string Geocode { get; set; } + public string Latitude { get; set; } + public string Longitude { get; set; } + public List WeatherElement { get; set; } + } + public class WeatherElement3 + { + public string ElementName { get; set; } + public List