// --------------------------------------------------------------------------------------------------------------------
//
// Copyright (c) UCA Clermont-Ferrand All rights reserved.
//
// --------------------------------------------------------------------------------------------------------------------
namespace Minecraft.Crafting.Api.Models
{
///
/// The item.
///
public class Item
{
///
/// Initializes a new instance of the class.
///
public Item()
{
EnchantCategories = new List();
RepairWith = new List();
}
///
/// Gets or sets the created date.
///
public DateTime CreatedDate { get; set; }
///
/// Gets or sets the display name.
///
public string DisplayName { get; set; }
///
/// Gets or sets the enchant categories.
///
public List EnchantCategories { get; set; }
///
/// Gets or sets the identifier.
///
public int Id { get; set; }
///
/// Gets or sets the image base64.
///
public string ImageBase64 { get; set; }
///
/// Gets or sets the maximum durability.
///
public int MaxDurability { get; set; }
///
/// Gets or sets the name.
///
public string Name { get; set; }
///
/// Gets or sets the repair with.
///
public List RepairWith { get; set; }
///
/// Gets or sets the size of the stack.
///
public int StackSize { get; set; }
///
/// Gets or sets the updated date.
///
public DateTime? UpdatedDate { get; set; }
}
}