Mineplex2018-withcommit/Website/LOC.Core/Model/Sales/AccountTransaction.cs

18 lines
367 B
C#
Raw Normal View History

2013-08-27 17:14:08 +02:00
namespace LOC.Core.Model.Sales
{
public class AccountTransaction
{
public int AccountTransactionId { get; set; }
public Account.Account Account { get; set; }
public long Date { get; set; }
2013-08-27 17:14:08 +02:00
public string SalesPackageName { get; set; }
public int Gems { get; set; }
public int Coins { get; set; }
2013-08-27 17:14:08 +02:00
}
}