14 lines
271 B
C#
14 lines
271 B
C#
|
namespace LOC.Core.Model.Sales
|
|||
|
{
|
|||
|
public class GemTransaction
|
|||
|
{
|
|||
|
public int GemTransactionId { get; set; }
|
|||
|
|
|||
|
public Account.Account Account { get; set; }
|
|||
|
|
|||
|
public string Source { get; set; }
|
|||
|
|
|||
|
public int Amount { get; set; }
|
|||
|
}
|
|||
|
}
|