22 lines
379 B
C#
22 lines
379 B
C#
using System.Text.Json.Serialization;
|
|
using SPTarkov.Server.Core.Models.Utils;
|
|
|
|
namespace SPTarkov.Server.Core.Models.Eft.Game;
|
|
|
|
public record GetRaidTimeRequest : IRequestData
|
|
{
|
|
[JsonPropertyName("Side")]
|
|
public string? Side
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
[JsonPropertyName("Location")]
|
|
public string? Location
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
}
|