namespace SharedLibraryCore.Dtos
{
public class FindClientResult
{
///
/// client identifier
///
public int ClientId { get; set; }
///
/// networkid of client
///
public string Xuid { get; set; }
///
/// name of client
///
public string Name { get; set; }
}
}