Add more types

This commit is contained in:
Cj
2025-01-07 05:31:01 -05:00
parent 62c4cb17ad
commit 6febf90bfa
12 changed files with 474 additions and 0 deletions
@@ -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; }
}