mirror of
https://github.com/RaidMax/IW4M-Admin.git
synced 2025-06-07 21:58:06 -05:00
Updated `ClientInfoResult` to include a new `GameName` property. Also modified `ClientController` to handle and display this new property properly.
19 lines
526 B
C#
19 lines
526 B
C#
using System;
|
|
using Data.Models;
|
|
|
|
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; }
|
|
}
|