mirror of
https://github.com/ACEmulator/ACE
synced 2026-08-17 12:26:06 -04:00
* add support for recipes to DeveloperContentCommands * adding landblock instance support to import-sql and import-json * fixing spelling * updating json landblock key * adding quest support to import-json and import-sql * fixing bug in original GDLEConverter.TryConvert() for reading landblock json * adding comment * removing duplicate code from merge
9 lines
208 B
C#
9 lines
208 B
C#
namespace ACE.Adapter.GDLE.Models
|
|
{
|
|
public class QuestValue
|
|
{
|
|
public string fullname { get; set; }
|
|
public int maxsolves { get; set; }
|
|
public int mindelta { get; set; }
|
|
}
|
|
}
|