using System; using System.Collections.Generic; namespace ACE.Database.Models.World; /// /// Recipe String Requirments /// public partial class RecipeRequirementsString { /// /// Unique Id of this Recipe Requirement instance /// public uint Id { get; set; } /// /// Unique Id of Recipe /// public uint RecipeId { get; set; } public sbyte Index { get; set; } public int Stat { get; set; } public string Value { get; set; } public int Enum { get; set; } public string Message { get; set; } public virtual Recipe Recipe { get; set; } }