IW4M-Admin/SharedLibraryCore/Dtos/FindClientRequest.cs
2020-05-25 13:04:44 -05:00

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}]";
}
}