Mineplex2018-withcommit/Website/LOC.Core/Model/Sales/AccountTransaction.cs
Jonathan Williams 6d86f403ac Added coins Currency to web api
Added coins purchase for all cosmetic items
Added Stats manager
Added Inventory Manager

Redesigned gadgets/morph/particle/pets/mounts page and inventory.
2014-08-07 00:33:24 -07:00

16 lines
327 B
C#

namespace LOC.Core.Model.Sales
{
public class AccountTransaction
{
public int AccountTransactionId { get; set; }
public Account.Account Account { get; set; }
public string SalesPackageName { get; set; }
public int Gems { get; set; }
public int Coins { get; set; }
}
}