server-master/srcs/WingsAPI.Game/Shops/ShopPlayerItem.cs
2026-02-10 18:21:30 +01:00

18 lines
No EOL
326 B
C#

// WingsEmu
//
// Developed by NosWings Team
using WingsEmu.Game.Inventory;
namespace WingsEmu.Game.Shops;
public class ShopPlayerItem
{
public InventoryItem InventoryItem { get; set; }
public long PricePerUnit { get; set; }
public short SellAmount { get; set; }
public short ShopSlot { get; set; }
}