Files
SPT-Server-Build/Core/Models/Eft/Match/UpdatePingRequestData.cs
T

10 lines
196 B
C#

using System.Text.Json.Serialization;
namespace Core.Models.Eft.Match;
public class UpdatePingRequestData
{
[JsonPropertyName("servers")]
public List<object>? servers { get; set; }
}