ace/Source/ACE.Database/Models/World/CookBook.cs
Ty Conner bd5d7fc32d
Add LastModified to things (#1410)
* Add LastModified to things

* Create db-pr-override.txt

* Update changelog.md

* Update README.md
2019-02-04 11:55:13 -06:00

16 lines
403 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 DateTime LastModified { get; set; }
public Recipe Recipe { get; set; }
}
}