Files
SPT-Server-Build/Core/Models/Spt/Weather/GetLocalWeatherResponseData.cs
T
2025-01-07 05:31:01 -05:00

12 lines
258 B
C#

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; }
}