Files
SPT-Server-Build/Libraries/Core/Models/Eft/Match/Server.cs
T
2025-02-07 19:36:17 +00:00

28 lines
372 B
C#

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