using System;
using System.Collections.Generic;
namespace ACE.Database.Models.World;
///
/// Cook Book for Recipes
///
public partial class CookBook
{
///
/// Unique Id of this cook book instance
///
public uint Id { get; set; }
///
/// Unique Id of Recipe
///
public uint RecipeId { get; set; }
///
/// Weenie Class Id of the source object for this recipe
///
public uint SourceWCID { get; set; }
///
/// Weenie Class Id of the target object for this recipe
///
public uint TargetWCID { get; set; }
public DateTime LastModified { get; set; }
public virtual Recipe Recipe { get; set; }
}