using System;
using System.Collections.Generic;
namespace ACE.Database.Models.World;
///
/// Recipe IID Requirments
///
public partial class RecipeRequirementsIID
{
///
/// 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 uint Value { get; set; }
public int Enum { get; set; }
public string Message { get; set; }
public virtual Recipe Recipe { get; set; }
}