Mineplex2018-withcommit/Website/LOC.Core/Model/Sales/AccountTransaction.cs
Jonathan Williams 3fb52c5c71 Initial Commit
2013-08-27 08:14:08 -07:00

14 lines
287 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; }
}
}