17 lines
438 B
C#
17 lines
438 B
C#
using System.Text.Json.Serialization;
|
|
using SPTarkov.Server.Core.Models.Utils;
|
|
|
|
namespace SPTarkov.Server.Core.Models.Eft.Match;
|
|
|
|
public record MatchGroupStartGameRequest : IRequestData
|
|
{
|
|
[JsonExtensionData]
|
|
public Dictionary<string, object> ExtensionData { get; set; }
|
|
|
|
[JsonPropertyName("groupId")]
|
|
public string? GroupId { get; set; }
|
|
|
|
[JsonPropertyName("servers")]
|
|
public List<Server>? Servers { get; set; }
|
|
}
|