Mineplex2018-withcommit/Website/LOC.Core/Tokens/UnknownPurchaseToken.cs

14 lines
272 B
C#
Raw Normal View History

2013-08-27 17:14:08 +02:00
namespace LOC.Core.Tokens
{
public class UnknownPurchaseToken
{
public string AccountName { get; set; }
public string SalesPackageName { get; set; }
public bool CoinPurchase { get; set; }
2013-08-27 17:14:08 +02:00
public int Cost { get; set; }
}
}