IW4M-Admin/SharedLibrary/Miscellaneous.cs

16 lines
310 B
C#
Raw Normal View History

2015-04-27 13:40:57 -04:00
using System;
namespace SharedLibrary
2015-04-27 13:40:57 -04:00
{
public class PlayerHistory
2015-04-27 13:40:57 -04:00
{
public PlayerHistory(DateTime w, int cNum)
2015-04-27 13:40:57 -04:00
{
When = w;
Players = cNum;
}
public DateTime When { get; private set; }
public int Players { get; private set; }
}
}