1
0
Files
mineplex-crepe/Website/LOC.Core/Model/Sales/AccountTransaction.cs
2021-08-19 16:35:32 +07:00

18 lines
367 B
C#

namespace LOC.Core.Model.Sales
{
public class AccountTransaction
{
public int AccountTransactionId { get; set; }
public Account.Account Account { get; set; }
public long Date { get; set; }
public string SalesPackageName { get; set; }
public int Gems { get; set; }
public int Coins { get; set; }
}
}