28 lines
388 B
C#
28 lines
388 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace SPTarkov.Server.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;
|
|
}
|
|
}
|