Files
SPT-Server-Build/Core/Models/Spt/Weather/GetLocalWeatherResponseData.cs
T
2025-01-08 13:41:25 +00:00

12 lines
282 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<Eft.Weather.Weather> Weather { get; set; }
}