mirror of
https://github.com/SabreTools/SabreTools.Serialization.git
synced 2026-04-22 06:09:41 +00:00
20 lines
374 B
C#
20 lines
374 B
C#
using System.Xml.Serialization;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace SabreTools.Data.Models.Metadata
|
|
{
|
|
[JsonObject("info"), XmlRoot("info")]
|
|
public class Info : DatItem
|
|
{
|
|
#region Properties
|
|
|
|
public string? Name { get; set; }
|
|
|
|
public string? Value { get; set; }
|
|
|
|
#endregion
|
|
|
|
public Info() => ItemType = ItemType.Info;
|
|
}
|
|
}
|