IW4M-Admin/SharedLibraryCore/Dtos/FindClientResult.cs

20 lines
447 B
C#
Raw Normal View History

namespace SharedLibraryCore.Dtos
{
public class FindClientResult
{
/// <summary>
2022-01-26 11:32:16 -05:00
/// client identifier
/// </summary>
public int ClientId { get; set; }
/// <summary>
2022-01-26 11:32:16 -05:00
/// networkid of client
/// </summary>
public string Xuid { get; set; }
/// <summary>
2022-01-26 11:32:16 -05:00
/// name of client
/// </summary>
public string Name { get; set; }
}
2022-01-26 11:32:16 -05:00
}