mirror of
https://github.com/SabreTools/SabreTools.Serialization.git
synced 2026-04-20 05:03:11 +00:00
19 lines
376 B
C#
19 lines
376 B
C#
using System.Xml.Serialization;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace SabreTools.Data.Models.Metadata
|
|
{
|
|
[JsonObject("sample"), XmlRoot("sample")]
|
|
public class Sample : DatItem
|
|
{
|
|
#region Keys
|
|
|
|
/// <remarks>string</remarks>
|
|
public const string NameKey = "name";
|
|
|
|
#endregion
|
|
|
|
public Sample() => ItemType = ItemType.Sample;
|
|
}
|
|
}
|