Files
SPT-Server-Build/Core/Models/Eft/Game/ServerDetails.cs
T
2025-01-06 23:49:14 +00:00

12 lines
235 B
C#

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