mirror of
https://github.com/MikuLeaks/KianaBH3.git
synced 2025-12-16 14:54:38 +01:00
Init enter game
This commit is contained in:
13
Common/Data/Models/Dispatch/DispatchQuery.cs
Normal file
13
Common/Data/Models/Dispatch/DispatchQuery.cs
Normal file
@@ -0,0 +1,13 @@
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using Microsoft.AspNetCore.Mvc;
|
||||
|
||||
namespace KianaBH.Data.Models.Dispatch;
|
||||
|
||||
public class DispatchQuery
|
||||
{
|
||||
[Required] public string? Version { get; set; }
|
||||
[FromQuery(Name = "t")] public int Timestamp { get; set; }
|
||||
public string? Lang { get; set; }
|
||||
public int Uid { get; set; }
|
||||
public string? Token { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user