2014-08-08 09:05:58 +02:00
|
|
|
|
namespace LOC.Core.Model.Sales
|
|
|
|
|
{
|
|
|
|
|
public class CoinTransaction
|
|
|
|
|
{
|
|
|
|
|
public int CoinTransactionId { get; set; }
|
|
|
|
|
|
|
|
|
|
public Account.Account Account { get; set; }
|
|
|
|
|
|
2014-08-18 21:46:23 +02:00
|
|
|
|
public long Date { get; set; }
|
|
|
|
|
|
2014-08-08 09:05:58 +02:00
|
|
|
|
public string Source { get; set; }
|
|
|
|
|
|
|
|
|
|
public int Amount { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|