IW4M-Admin/SharedLibraryCore/Dtos/FindClientRequest.cs
2022-01-26 15:26:25 -06:00

20 lines
456 B
C#

namespace SharedLibraryCore.Dtos
{
public class FindClientRequest : PaginationRequest
{
/// <summary>
/// name of client
/// </summary>
public string Name { get; set; }
/// <summary>
/// network id of client
/// </summary>
public string Xuid { get; set; }
public string ToDebugString()
{
return $"[Name={Name}, Xuid={Xuid}]";
}
}
}