2013-10-18 09:46:06 +02:00
|
|
|
|
namespace LOC.Core.Model.Sales
|
|
|
|
|
{
|
|
|
|
|
public class GemTransaction
|
|
|
|
|
{
|
|
|
|
|
public int GemTransactionId { get; set; }
|
|
|
|
|
|
|
|
|
|
public Account.Account Account { get; set; }
|
|
|
|
|
|
2014-08-18 23:35:03 +02:00
|
|
|
|
public long? Date { get; set; }
|
2014-08-18 21:46:23 +02:00
|
|
|
|
|
2013-10-18 09:46:06 +02:00
|
|
|
|
public string Source { get; set; }
|
|
|
|
|
|
|
|
|
|
public int Amount { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|