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

12 lines
284 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; }
}