Mineplex2018-withcommit/Website/LOC.Core/Tokens/Client/DonorToken.cs

20 lines
690 B
C#
Raw Normal View History

2013-08-27 17:14:08 +02:00
namespace LOC.Core.Tokens.Client
{
using System.Collections.Generic;
2014-08-21 22:55:09 +02:00
using LOC.Core.Model.Sales;
2013-08-27 17:14:08 +02:00
public class DonorToken
{
public int Gems { get; set; }
public int Coins { get; set; }
2013-08-27 17:14:08 +02:00
public bool Donated { get; set; }
public List<int> SalesPackages { get; set; }
public List<string> UnknownSalesPackages { get; set; }
public List<AccountTransactionToken> Transactions { get; set; }
2014-08-21 22:55:09 +02:00
public List<CoinTransactionToken> CoinRewards { get; set; }
2013-08-27 17:14:08 +02:00
public List<CustomBuildToken> CustomBuilds { get; set; }
public List<PetToken> Pets { get; set; }
public int PetNameTagCount { get; set; }
}
}