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; }
|
|
|
|
|
|
2014-08-18 21:46:23 +02:00
|
|
|
|
public long Date { get; set; }
|
|
|
|
|
|
2013-08-27 17:14:08 +02:00
|
|
|
|
public string SalesPackageName { get; set; }
|
|
|
|
|
|
|
|
|
|
public int Gems { get; set; }
|
2014-08-07 09:33:24 +02:00
|
|
|
|
|
|
|
|
|
public int Coins { get; set; }
|
2013-08-27 17:14:08 +02:00
|
|
|
|
}
|
|
|
|
|
}
|