18 lines
No EOL
326 B
C#
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; }
|
|
} |