From b1a582a2eee48b392dbe31ffa4afd85a80d46874 Mon Sep 17 00:00:00 2001 From: Alexis DRAI Date: Sun, 26 Feb 2023 17:59:50 +0100 Subject: [PATCH] :necktie: Add image string to InventoryModel --- Minecraft.Crafting.Api/Models/InventoryModel.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/Minecraft.Crafting.Api/Models/InventoryModel.cs b/Minecraft.Crafting.Api/Models/InventoryModel.cs index 0c0cda5..2664492 100644 --- a/Minecraft.Crafting.Api/Models/InventoryModel.cs +++ b/Minecraft.Crafting.Api/Models/InventoryModel.cs @@ -25,5 +25,6 @@ namespace Minecraft.Crafting.Api.Models /// Gets or sets the position. /// public int Position { get; set; } + public string? ImageBase64 { get; set; } } } \ No newline at end of file