Snowflake/RPG.Services.SDK/Models/Region/GatewayInfo.cs

13 lines
263 B
C#
Raw Normal View History

2024-01-18 16:18:25 +00:00
using System.Text.Json.Serialization;
namespace RPG.Services.SDK.Models.Region;
public record GatewayInfo
{
[JsonPropertyName("ip")]
public required string Ip { get; set; }
[JsonPropertyName("port")]
public required int Port { get; set; }
}