Files
SPT-Server-Build/Libraries/SPTarkov.Server.Core/Models/Spt/Weather/GetLocalWeatherResponseData.cs
T
2025-03-07 13:16:43 +00:00

22 lines
394 B
C#

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