mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
25 lines
563 B
C#
25 lines
563 B
C#
|
|
using System.Xml.Serialization;
|
||
|
|
using Newtonsoft.Json;
|
||
|
|
|
||
|
|
namespace SabreTools.Models.Internal
|
||
|
|
{
|
||
|
|
[JsonObject("adjuster"), XmlRoot("adjuster")]
|
||
|
|
public class Adjuster : DatItem
|
||
|
|
{
|
||
|
|
#region Keys
|
||
|
|
|
||
|
|
// <remarks>Condition</remarks>
|
||
|
|
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;
|
||
|
|
}
|
||
|
|
}
|