// -------------------------------------------------------------------------------------------------------------------- // // Copyright (c) UCA Clermont-Ferrand All rights reserved. // // -------------------------------------------------------------------------------------------------------------------- namespace Minecraft.Crafting.Api.Models { /// /// The inventory model. /// public class InventoryModel { /// /// Gets or sets the name of the item. /// public string ItemName { get; set; } /// /// Gets or sets the position. /// public int Position { get; set; } /// /// Gets or sets the number of items in a stack. /// public int Number { get; set; } /// /// Gets or sets the stack size of an item. /// public int StackSize { get; set; } } }