mirror of
https://github.com/RaidMax/IW4M-Admin.git
synced 2025-06-10 15:20:48 -05:00
[issue #139] client lookup and stats api
This commit is contained in:
17
SharedLibraryCore/Dtos/FindClientRequest.cs
Normal file
17
SharedLibraryCore/Dtos/FindClientRequest.cs
Normal file
@ -0,0 +1,17 @@
|
||||
namespace SharedLibraryCore.Dtos
|
||||
{
|
||||
public class FindClientRequest : PaginationInfo
|
||||
{
|
||||
/// <summary>
|
||||
/// name of client
|
||||
/// </summary>
|
||||
public string Name { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// network id of client
|
||||
/// </summary>
|
||||
public string Xuid { get; set; }
|
||||
|
||||
public string ToDebugString() => $"[Name={Name}, Xuid={Xuid}]";
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user