5d1c9bd218
project renaming moved PluginImporter to SharedLibrary config writer abstracted for plugins
16 lines
318 B
C#
16 lines
318 B
C#
using System;
|
|
|
|
namespace SharedLibrary.Helpers
|
|
{
|
|
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; }
|
|
}
|
|
}
|