mirror of
https://github.com/RaidMax/IW4M-Admin.git
synced 2025-06-08 06:08:20 -05:00
18 lines
410 B
C#
18 lines
410 B
C#
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}]";
|
|
}
|
|
}
|