mirror of
https://github.com/RaidMax/IW4M-Admin.git
synced 2025-06-07 21:58:06 -05:00
16 lines
310 B
C#
16 lines
310 B
C#
using System;
|
|
|
|
namespace SharedLibrary
|
|
{
|
|
public class PlayerHistory
|
|
{
|
|
public PlayerHistory(DateTime w, int cNum)
|
|
{
|
|
When = w;
|
|
Players = cNum;
|
|
}
|
|
public DateTime When { get; private set; }
|
|
public int Players { get; private set; }
|
|
}
|
|
}
|