6d86f403ac
Added coins purchase for all cosmetic items Added Stats manager Added Inventory Manager Redesigned gadgets/morph/particle/pets/mounts page and inventory.
14 lines
272 B
C#
14 lines
272 B
C#
namespace LOC.Core.Tokens
|
|
{
|
|
public class UnknownPurchaseToken
|
|
{
|
|
public string AccountName { get; set; }
|
|
|
|
public string SalesPackageName { get; set; }
|
|
|
|
public bool CoinPurchase { get; set; }
|
|
|
|
public int Cost { get; set; }
|
|
}
|
|
}
|