You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
823 B

// --------------------------------------------------------------------------------------------------------------------
// <copyright file="InventoryController.cs" company="UCA Clermont-Ferrand">
// Copyright (c) UCA Clermont-Ferrand All rights reserved.
// </copyright>
// --------------------------------------------------------------------------------------------------------------------
namespace Minecraft.Crafting.Api
{
using Minecraft.Crafting.Api.Models;
/// <summary>
/// The recipe.
/// </summary>
public class Recipe
{
/// <summary>
/// Gets or sets the give.
/// </summary>
public Item Give { get; set; }
/// <summary>
/// Gets or sets the have.
/// </summary>
public List<List<string>> Have { get; set; }
}
}