using System; using System.Collections.Generic; using System.IO; using System.Linq; using SabreTools.Library.DatItems; using SabreTools.Library.Filtering; using SabreTools.Library.Tools; using Newtonsoft.Json; using Newtonsoft.Json.Converters; /// /// 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")] public class Original { [JsonProperty("value")] public bool? Value { get; set; } [JsonProperty("content")] public string Content { get; set; } } #endregion #endregion //DatItem }