| 123456789101112131415161718 |
- namespace ScrapYard.API
- {
- public class ShopPlatformEntry
- {
- public int ItemID { get; protected set; }
- public int Price { get; protected set; }
- public int Quantity { get; protected set; }
- public int CurrencyItemID { get; protected set; }
- public ShopPlatformEntry(int itemID, int price, int quantity = 1, int currencyItemID = 57)
- {
- this.ItemID = itemID;
- this.Price = price;
- this.CurrencyItemID = currencyItemID;
- this.Quantity = quantity;
- }
- }
- }
|