mirror of
https://github.com/SabreTools/SabreTools.Serialization.git
synced 2026-04-14 02:02:57 +00:00
12 lines
242 B
C#
12 lines
242 B
C#
using System.Xml.Serialization;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace SabreTools.Data.Models.Metadata
|
|
{
|
|
[JsonObject("infosource"), XmlRoot("infosource")]
|
|
public class InfoSource
|
|
{
|
|
public string[]? Source { get; set; }
|
|
}
|
|
}
|