IW4M-Admin/Admin/Helpers.cs

19 lines
361 B
C#
Raw Normal View History

2015-04-27 13:40:57 -04:00
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; }
}
}