mirror of
https://github.com/RaidMax/IW4M-Admin.git
synced 2025-06-08 14:18:20 -05:00
20 lines
447 B
C#
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; }
|
|
}
|
|
} |