Files
SPT-Server-Build/Core/Models/Eft/Match/MatchGroupStartGameRequest.cs
T
CWX bb887b0901 Lots of new things (#40)
* callbacks

* controllers

* Router override

* make requests use interface

* create Routers

* extra parts
2025-01-12 15:35:32 +00:00

14 lines
317 B
C#

using System.Text.Json.Serialization;
using Core.Models.Utils;
namespace Core.Models.Eft.Match;
public class MatchGroupStartGameRequest : IRequestData
{
[JsonPropertyName("groupId")]
public string? GroupId { get; set; }
[JsonPropertyName("servers")]
public List<Server>? Servers { get; set; }
}