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() => $"[Name={Name}, Xuid={Xuid}]"; } }