mirror of
https://github.com/MikuLeaks/KianaBH3.git
synced 2025-12-12 13:04:33 +01:00
13 lines
377 B
C#
13 lines
377 B
C#
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; }
|
|
} |