mirror of
https://github.com/MikuLeaks/KianaBH3.git
synced 2026-03-24 07:12:22 +01:00
Init enter game
This commit is contained in:
17
Common/Data/Models/Dispatch/QueryDispatchModels.cs
Normal file
17
Common/Data/Models/Dispatch/QueryDispatchModels.cs
Normal file
@@ -0,0 +1,17 @@
|
||||
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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user