Mineplex2018-withcommit/Website/LOC.Core/Tokens/Client/DonorToken.cs
Jonathan Williams d73ffcccfd Added performance logging in ServerMonitor
Added date tracking for gem/coin/account transactions in preparation for Customer Support server.
2014-08-18 15:46:23 -04:00

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; }
}
}