18 lines
387 B
C#
18 lines
387 B
C#
using System.Text.Json.Serialization;
|
|
using SPTarkov.Server.Core.Models.Utils;
|
|
|
|
namespace SPTarkov.Server.Core.Models.Eft.Match;
|
|
|
|
public record MatchGroupPlayerRemoveRequest : IRequestData
|
|
{
|
|
[JsonExtensionData]
|
|
public Dictionary<string, object> ExtensionData { get; set; }
|
|
|
|
[JsonPropertyName("aidToKick")]
|
|
public string? AidToKick
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
}
|