Files
SPT-Server-Build/Libraries/SPTarkov.Server.Core/Models/Spt/Server/ServerBase.cs
T
2025-03-07 13:16:43 +00:00

21 lines
302 B
C#

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