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; }
|
2014-08-07 09:33:24 +02:00
|
|
|
|
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; }
|
2014-08-18 21:46:23 +02:00
|
|
|
|
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; }
|
|
|
|
|
}
|
|
|
|
|
}
|