ace/Source/ACE.Database/Models/World/CookBook.cs
Mag-nus 1429c1751f Cook_book column reorder
Source now comes before target
2018-08-01 22:56:21 -05:00

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; }
}
}