using System; using System.Collections.Generic; namespace ACE.Database.Models.World; /// /// Recipe String Mods /// public partial class RecipeModsString { /// /// Unique Id of this Recipe Mod instance /// public uint Id { get; set; } /// /// Unique Id of Recipe Mod /// public uint RecipeModId { get; set; } public sbyte Index { get; set; } public int Stat { get; set; } public string Value { get; set; } public int Enum { get; set; } public int Source { get; set; } public virtual RecipeMod RecipeMod { get; set; } }