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