using System.Xml.Serialization; using Newtonsoft.Json; /// /// This holds all of the auxiliary types needed for proper parsing /// namespace SabreTools.Library.DatItems { #region DatItem #region OpenMSX /// /// Represents the OpenMSX original value /// [JsonObject("original")] [XmlRoot("original")] public class Original { [JsonProperty("value")] public bool? Value { get; set; } [JsonProperty("content")] public string Content { get; set; } } #endregion #endregion //DatItem }