d14e7cc155
Co-authored-by: Alex <clodanSPT@hotmail.com> Co-authored-by: Chomp <27521899+chompDev@users.noreply.github.com>
16 lines
348 B
C#
16 lines
348 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; }
|
|
}
|