d73ffcccfd
Added date tracking for gem/coin/account transactions in preparation for Customer Support server.
16 lines
313 B
C#
16 lines
313 B
C#
namespace LOC.Core.Model.Sales
|
|
{
|
|
public class CoinTransaction
|
|
{
|
|
public int CoinTransactionId { get; set; }
|
|
|
|
public Account.Account Account { get; set; }
|
|
|
|
public long Date { get; set; }
|
|
|
|
public string Source { get; set; }
|
|
|
|
public int Amount { get; set; }
|
|
}
|
|
}
|