Mineplex2018-withcommit/Website/LOC.Core/Model/Sales/AccountTransaction.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
367 B
C#

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