Mineplex2018-withcommit/Website/LOC.Core/Model/Sales/GemTransaction.cs
Jonathan Williams 90fbc397ff Converted gem rewards to boolean return from website.
Implemented gem transactions and source.
2013-10-18 00:46:06 -07:00

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; }
}
}