Mineplex2018-withcommit/Website/LOC.Core/Model/Sales/GemTransaction.cs
Jonathan Williams 33a1699fce Minor enjin tweak.
Reverted to nullable gem column because sql db wants to take forever converting.
2014-08-18 17:35:03 -04:00

16 lines
312 B
C#

namespace LOC.Core.Model.Sales
{
public class GemTransaction
{
public int GemTransactionId { get; set; }
public Account.Account Account { get; set; }
public long? Date { get; set; }
public string Source { get; set; }
public int Amount { get; set; }
}
}