mirror of
https://github.com/SabreTools/SabreTools.Serialization.git
synced 2026-04-08 07:13:01 +00:00
13 lines
253 B
C#
13 lines
253 B
C#
using System.Xml;
|
|
using System.Xml.Serialization;
|
|
|
|
namespace SabreTools.Data.Models.NoIntroDatabase
|
|
{
|
|
[XmlRoot("datafile")]
|
|
public class Datafile
|
|
{
|
|
[XmlElement("game", typeof(Game))]
|
|
public Game[]? Game { get; set; }
|
|
}
|
|
}
|