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