Files
SPT-Server-Build/Core/Models/Spt/Weather/GetLocalWeatherResponseData.cs
T
2025-01-17 18:13:37 +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; }
}