14 lines
328 B
C#
14 lines
328 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; }
|
|
}
|