12 lines
263 B
C#
12 lines
263 B
C#
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; }
|
|
}
|