ace/Source/ACE.Database/Models/World/CookBook.cs
Galli ecd6ce2b43
Remove UTF-8 BOMs across repository (#4324)
* remove bom from source files

* Remove stray BOM cleanup comments
2025-06-22 15:33:36 -04:00

34 lines
772 B
C#

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