ace/Source/ACE.Database/Models/World/RecipeModsString.cs
Ty Conner 350edddcf6
World DB Changes (#1295)
* Minor PCAP commenting fix

* Remove Duplicated Data from Spell Table

* Update MySqlInstall.bat

* Update Recipe Mods table column Unknown1 to Source

* Update SpellProperties.cs

* Add spell-export

* cleanup

* Update code

* delete spell-export

* remove data that was redunant from dat

* Update CreateList and Generator labels

* Change Emote.Display to Bool

* Change Emote.Display to Bool

* Fix script

* update changelog

* Add some null checks

* More null check

* syntax error

* cleanup

* more cleanup

* Create db-pr-override.txt
2019-01-19 19:55:26 -06:00

17 lines
437 B
C#

using System;
using System.Collections.Generic;
namespace ACE.Database.Models.World
{
public partial class RecipeModsString
{
public uint Id { get; set; }
public uint RecipeModId { get; set; }
public int Stat { get; set; }
public string Value { get; set; }
public int Enum { get; set; }
public int Source { get; set; }
public RecipeMod RecipeMod { get; set; }
}
}