ShopPlatformEntry.cs 499 B

123456789101112131415161718
  1. namespace Ships.API
  2. {
  3. public class ShopPlatformEntry
  4. {
  5. public int ItemID { get; protected set; }
  6. public int Price { get; protected set; }
  7. public int Quantity { get; protected set; }
  8. public int CurrencyItemID { get; protected set; }
  9. public ShopPlatformEntry(int itemID, int price, int quantity = 1, int currencyItemID = 57)
  10. {
  11. this.ItemID = itemID;
  12. this.Price = price;
  13. this.CurrencyItemID = currencyItemID;
  14. this.Quantity = quantity;
  15. }
  16. }
  17. }