19 lines
449 B
C#
19 lines
449 B
C#
|
using System.Text.Json.Serialization;
|
|||
|
|
|||
|
namespace RPG.Services.SDK.Models.Region;
|
|||
|
|
|||
|
public record RegionInfo
|
|||
|
{
|
|||
|
[JsonPropertyName("env_type")]
|
|||
|
public required string EnvType { get; set; }
|
|||
|
|
|||
|
[JsonPropertyName("dispatch_url")]
|
|||
|
public required string DispatchUrl { get; set; }
|
|||
|
|
|||
|
[JsonPropertyName("name")]
|
|||
|
public required string Name { get; set; }
|
|||
|
|
|||
|
[JsonPropertyName("title")]
|
|||
|
public required string Title { get; set; }
|
|||
|
}
|