namespace Minecraft.Crafting.Api.Models { public class Item { public Item() { EnchantCategories = new List(); RepairWith = new List(); } public DateTime CreatedDate { get; set; } public string DisplayName { get; set; } public List EnchantCategories { get; set; } public int Id { get; set; } public int MaxDurability { get; set; } public string Name { get; set; } public List RepairWith { get; set; } public int StackSize { get; set; } public DateTime? UpdatedDate { get; set; } } }