2023-08-01 23:18:53 -04:00
|
|
|
using System.Xml.Serialization;
|
|
|
|
|
using Newtonsoft.Json;
|
|
|
|
|
|
|
|
|
|
namespace SabreTools.Models.Internal
|
|
|
|
|
{
|
|
|
|
|
[JsonObject("adjuster"), XmlRoot("adjuster")]
|
|
|
|
|
public class Adjuster : DatItem
|
|
|
|
|
{
|
|
|
|
|
#region Keys
|
|
|
|
|
|
|
|
|
|
// <remarks>Condition</remarks>
|
2023-08-11 11:29:25 -04:00
|
|
|
[NoFilter]
|
2023-08-01 23:18:53 -04:00
|
|
|
public const string ConditionKey = "condition";
|
|
|
|
|
|
|
|
|
|
/// <remarks>bool</remarks>
|
|
|
|
|
public const string DefaultKey = "default";
|
|
|
|
|
|
|
|
|
|
/// <remarks>string</remarks>
|
|
|
|
|
public const string NameKey = "name";
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
public Adjuster() => Type = ItemType.Adjuster;
|
|
|
|
|
}
|
|
|
|
|
}
|