mirror of
https://github.com/RaidMax/IW4M-Admin.git
synced 2025-06-10 15:20:48 -05:00
Add GameName to ClientInfoResult and ClientController
Updated `ClientInfoResult` to include a new `GameName` property. Also modified `ClientController` to handle and display this new property properly.
This commit is contained in:
@ -1,5 +1,5 @@
|
||||
using System;
|
||||
using Data.Models.Client;
|
||||
using Data.Models;
|
||||
|
||||
namespace SharedLibraryCore.Dtos;
|
||||
|
||||
@ -9,6 +9,7 @@ public class ClientInfoResult
|
||||
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; }
|
||||
|
Reference in New Issue
Block a user