mirror of
https://github.com/RaidMax/IW4M-Admin.git
synced 2025-06-08 14:18:20 -05:00
18 lines
507 B
C#
18 lines
507 B
C#
using System;
|
|
|
|
namespace SharedLibraryCore.Dtos;
|
|
|
|
public class ClientInfoResult
|
|
{
|
|
public int ClientId { get; set; }
|
|
public string Name { get; set; }
|
|
public string Level { get; set; }
|
|
public long NetworkId { get; set; }
|
|
public string GameName { get; set; }
|
|
public string? Tag { get; set; }
|
|
public DateTime FirstConnection { get; set; }
|
|
public DateTime LastConnection { get; set; }
|
|
public int TotalConnectionTime { get; set; }
|
|
public int Connections { get; set; }
|
|
}
|