mirror of
https://github.com/ACEmulator/ACE
synced 2026-08-17 12:26:06 -04:00
32 lines
659 B
C#
32 lines
659 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace ACE.Database.Models.World;
|
|
|
|
/// <summary>
|
|
/// Recipe Float Requirments
|
|
/// </summary>
|
|
public partial class RecipeRequirementsFloat
|
|
{
|
|
/// <summary>
|
|
/// Unique Id of this Recipe Requirement instance
|
|
/// </summary>
|
|
public uint Id { get; set; }
|
|
|
|
/// <summary>
|
|
/// Unique Id of Recipe
|
|
/// </summary>
|
|
public uint RecipeId { get; set; }
|
|
|
|
public sbyte Index { get; set; }
|
|
|
|
public int Stat { get; set; }
|
|
|
|
public double Value { get; set; }
|
|
|
|
public int Enum { get; set; }
|
|
|
|
public string Message { get; set; }
|
|
|
|
public virtual Recipe Recipe { get; set; }
|
|
}
|