Add more types
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
using System.Text.Json.Serialization;
|
||||
|
||||
namespace Core.Models.Spt.Weather;
|
||||
|
||||
public class GetLocalWeatherResponseData
|
||||
{
|
||||
[JsonPropertyName("season")]
|
||||
public int Season { get; set; }
|
||||
|
||||
[JsonPropertyName("weather")]
|
||||
public List<Weather> Weather { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user