15 lines
321 B
C#
15 lines
321 B
C#
|
namespace LOC.Core.Model.Sales
|
|||
|
{
|
|||
|
public class GameTransaction
|
|||
|
{
|
|||
|
public int GameTransactionId { get; set; }
|
|||
|
|
|||
|
public Account.Account Account { get; set; }
|
|||
|
|
|||
|
public int GameSalesPackageId { get; set; }
|
|||
|
|
|||
|
public int Gems { get; set; }
|
|||
|
|
|||
|
public int Economy { get; set; }
|
|||
|
}
|
|||
|
}
|