Files
SPT-Server-Build/Libraries/Core/Models/Spt/Weather/GetLocalWeatherResponseData.cs
T
2025-02-05 20:16:19 +00:00

14 lines
314 B
C#

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