// -------------------------------------------------------------------------------------------------------------------- // // 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 number item. /// public int NumberItem { get; set; } /// /// Gets or sets the position. /// public int Position { get; set; } public string? ImageBase64 { get; set; } } }