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