IW4M-Admin/SharedLibraryCore/Dtos/FindClientResult.cs
2022-01-26 15:26:25 -06:00

20 lines
447 B
C#

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