Files
SPT-Server-Build/Libraries/SPTarkov.Server.Core/Models/Eft/Match/Server.cs
T
2025-06-04 14:49:37 +01:00

31 lines
476 B
C#

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