Files
SabreTools/SabreTools.Library/DatItems/Auxiliary.cs

38 lines
774 B
C#
Raw Normal View History

2020-09-04 14:10:35 -07:00
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using SabreTools.Library.DatItems;
using SabreTools.Library.Filtering;
2020-09-03 13:20:56 -07:00
using SabreTools.Library.Tools;
2020-08-23 21:10:29 -07:00
using Newtonsoft.Json;
2020-09-02 15:38:10 -07:00
using Newtonsoft.Json.Converters;
2020-08-23 21:10:29 -07:00
/// <summary>
2020-08-21 15:31:19 -07:00
/// This holds all of the auxiliary types needed for proper parsing
/// </summary>
namespace SabreTools.Library.DatItems
{
#region DatItem
2020-09-02 23:31:35 -07:00
#region OpenMSX
/// <summary>
/// Represents the OpenMSX original value
/// </summary>
[JsonObject("original")]
public class Original
{
[JsonProperty("value")]
public bool? Value { get; set; }
[JsonProperty("content")]
public string Content { get; set; }
}
#endregion
2020-08-21 15:31:19 -07:00
#endregion //DatItem
}