mirror of
https://github.com/ACEmulator/ACE
synced 2026-08-17 12:26:06 -04:00
15 lines
352 B
C#
15 lines
352 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace ACE.Database.Models.World
|
|
{
|
|
public partial class CookBook
|
|
{
|
|
public uint Id { get; set; }
|
|
public uint RecipeId { get; set; }
|
|
public uint SourceWCID { get; set; }
|
|
public uint TargetWCID { get; set; }
|
|
|
|
public Recipe Recipe { get; set; }
|
|
}
|
|
}
|