Files
SPT-Server-Build/Core/Models/Eft/Game/ServerDetails.cs
T
2025-01-17 18:13:37 +00:00

13 lines
239 B
C#

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