9665d2d457
hide flagged status of users on webfront unless logged in (will still show the level if they report someone because cba to update the view component w/out auth status) add terminal to the radar maps
15 lines
369 B
C#
15 lines
369 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace SharedLibraryCore.Dtos
|
|
{
|
|
public class IW4MAdminInfo
|
|
{
|
|
public int TotalClientCount { get; set; }
|
|
public int RecentClientCount { get; set; }
|
|
public int TotalOccupiedClientSlots { get; set; }
|
|
public int TotalAvailableClientSlots { get; set; }
|
|
}
|
|
}
|