IW4M-Admin/SharedLibary/Miscellaneous.cs

19 lines
382 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
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; }
}
}