IW4M-Admin/SharedLibraryCore/Dtos/IW4MAdminInfo.cs

15 lines
369 B
C#
Raw Normal View History

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; }
}
}