mirror of
https://github.com/RaidMax/IW4M-Admin.git
synced 2025-06-07 21:58:06 -05:00
18 lines
492 B
C#
18 lines
492 B
C#
using System;
|
|
using Data.Models.Client;
|
|
|
|
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? Tag { get; set; }
|
|
public DateTime FirstConnection { get; set; }
|
|
public DateTime LastConnection { get; set; }
|
|
public int TotalConnectionTime { get; set; }
|
|
public int Connections { get; set; }
|
|
}
|