mirror of
https://github.com/SabreTools/SabreTools.Serialization.git
synced 2026-04-21 21:59:47 +00:00
25 lines
480 B
C#
25 lines
480 B
C#
using System.Xml.Serialization;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace SabreTools.Data.Models.Metadata
|
|
{
|
|
[JsonObject("original"), XmlRoot("original")]
|
|
public class Original : DatItem
|
|
{
|
|
#region Properties
|
|
|
|
public string? Content { get; set; }
|
|
|
|
#endregion
|
|
|
|
#region Keys
|
|
|
|
/// <remarks>bool</remarks>
|
|
public const string ValueKey = "value";
|
|
|
|
#endregion
|
|
|
|
public Original() => ItemType = ItemType.Original;
|
|
}
|
|
}
|