1
0
mirror of https://github.com/RaidMax/IW4M-Admin.git synced 2025-06-07 21:58:06 -05:00
IW4M-Admin/Admin/Helpers.cs
2015-04-27 12:40:57 -05:00

19 lines
361 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace IW4MAdmin
{
class pHistory
{
public pHistory(DateTime w, int cNum)
{
When = w;
Players = cNum;
}
public DateTime When { get; private set; }
public int Players { get; private set; }
}
}