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.

24 lines
816 B

// --------------------------------------------------------------------------------------------------------------------
// <copyright file="InventoryController.cs" company="UCA Clermont-Ferrand">
// Copyright (c) UCA Clermont-Ferrand All rights reserved.
// </copyright>
// --------------------------------------------------------------------------------------------------------------------
namespace Minecraft.Crafting.Api.Models
{
/// <summary>
/// The inventory model.
/// </summary>
public class InventoryModel
{
/// <summary>
/// Gets or sets the name of the item.
/// </summary>
public string ItemName { get; set; }
/// <summary>
/// Gets or sets the position.
/// </summary>
public int Position { get; set; }
}
}