d73ffcccfd
Added date tracking for gem/coin/account transactions in preparation for Customer Support server.
18 lines
589 B
C#
18 lines
589 B
C#
namespace LOC.Core.Tokens.Client
|
|
{
|
|
using System.Collections.Generic;
|
|
|
|
public class DonorToken
|
|
{
|
|
public int Gems { get; set; }
|
|
public int Coins { get; set; }
|
|
public bool Donated { get; set; }
|
|
public List<int> SalesPackages { get; set; }
|
|
public List<string> UnknownSalesPackages { get; set; }
|
|
public List<AccountTransactionToken> Transactions { get; set; }
|
|
public List<CustomBuildToken> CustomBuilds { get; set; }
|
|
public List<PetToken> Pets { get; set; }
|
|
public int PetNameTagCount { get; set; }
|
|
}
|
|
}
|