1
0
Files
mineplex-crepe/Website/LOC.Core/Tokens/Clan/ClanGeneratorToken.cs
2021-08-19 16:35:32 +07:00

21 lines
547 B
C#

namespace LOC.Core.Tokens.Clan
{
public class ClanGeneratorToken
{
public ClanGeneratorToken() { }
public ClanGeneratorToken(string name, string generator, int generatorStock, long generatorTime)
{
Name = name;
Location = generator;
Stock = generatorStock;
Time = generatorTime;
}
public string Name { get; set; }
public string Location { get; set; }
public int Stock { get; set; }
public long Time { get; set; }
}
}