mirror of
https://github.com/MikuLeaks/KianaBH3.git
synced 2025-12-12 13:04:33 +01:00
17 lines
436 B
C#
17 lines
436 B
C#
namespace KianaBH.Data.Models.Dispatch;
|
|
|
|
public class QueryDispatchResponse
|
|
{
|
|
public int Retcode { get; set; }
|
|
public List<RegionInfo> RegionList { get; set; } = [];
|
|
|
|
|
|
public class RegionInfo
|
|
{
|
|
public string? DispatchUrl { get; set; }
|
|
public object? Ext { get; set; }
|
|
public string? Name { get; set; }
|
|
public int Retcode { get; set; }
|
|
public string? Title { get; set; }
|
|
}
|
|
} |