Files
SPT-Server-Build/Core/Models/Eft/Match/Server.cs
T
2025-01-08 13:41:25 +00:00

15 lines
298 B
C#

using System.Text.Json.Serialization;
namespace Core.Models.Eft.Match;
public class Server
{
[JsonPropertyName("ping")]
public int? Ping { get; set; }
[JsonPropertyName("ip")]
public string? Ip { get; set; }
[JsonPropertyName("port")]
public int? Port { get; set; }
}