d14e7cc155
Co-authored-by: Alex <clodanSPT@hotmail.com> Co-authored-by: Chomp <27521899+chompDev@users.noreply.github.com>
29 lines
687 B
C#
29 lines
687 B
C#
using System.Text.Json.Serialization;
|
|
using SPTarkov.Server.Core.Models.Enums;
|
|
using SPTarkov.Server.Core.Models.Utils;
|
|
|
|
namespace SPTarkov.Server.Core.Models.Eft.Match;
|
|
|
|
public record MatchGroupStatusRequest : IRequestData
|
|
{
|
|
|
|
|
|
[JsonPropertyName("location")]
|
|
public string? Location { get; set; }
|
|
|
|
[JsonPropertyName("savage")]
|
|
public bool? IsSavage { get; set; }
|
|
|
|
[JsonPropertyName("dt")]
|
|
public string? DateTime { get; set; }
|
|
|
|
[JsonPropertyName("keyId")]
|
|
public string? KeyId { get; set; }
|
|
|
|
[JsonPropertyName("raidMode")]
|
|
public RaidMode? RaidMode { get; set; }
|
|
|
|
[JsonPropertyName("spawnPlace")]
|
|
public string? SpawnPlace { get; set; }
|
|
}
|