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

21 lines
286 B
C#

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