IW4M-Admin/SharedLibraryCore/Dtos/FindClientRequest.cs

20 lines
456 B
C#
Raw Normal View History

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