mirror of
https://github.com/SabreTools/SabreTools.Serialization.git
synced 2026-04-23 06:39:41 +00:00
17 lines
345 B
C#
17 lines
345 B
C#
|
|
using System.Xml.Serialization;
|
||
|
|
using Newtonsoft.Json;
|
||
|
|
|
||
|
|
namespace SabreTools.Data.Models.Metadata
|
||
|
|
{
|
||
|
|
[JsonObject("infosource"), XmlRoot("infosource")]
|
||
|
|
public class InfoSource : DictionaryBase
|
||
|
|
{
|
||
|
|
#region Keys
|
||
|
|
|
||
|
|
/// <remarks>string[]</remarks>
|
||
|
|
public const string SourceKey = "source";
|
||
|
|
|
||
|
|
#endregion
|
||
|
|
}
|
||
|
|
}
|