Files
SPT-Server-Build/Libraries/Core/Models/Spt/Weather/GetLocalWeatherResponseData.cs
T
2025-01-19 17:45:48 +00:00

13 lines
286 B
C#

using System.Text.Json.Serialization;
namespace Core.Models.Spt.Weather;
public record GetLocalWeatherResponseData
{
[JsonPropertyName("season")]
public int? Season { get; set; }
[JsonPropertyName("weather")]
public List<Eft.Weather.Weather>? Weather { get; set; }
}