mirror of
https://github.com/RaidMax/IW4M-Admin.git
synced 2025-06-10 23:31:13 -05:00
Various fixes and renamed 'libary' to 'library'
This commit is contained in:
18
SharedLibrary/Miscellaneous.cs
Normal file
18
SharedLibrary/Miscellaneous.cs
Normal file
@ -0,0 +1,18 @@
|
||||
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; }
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user