Add No-Intro database export models

This commit is contained in:
Matt Nadareski
2026-03-31 20:44:17 -04:00
parent 3f5b3d10fd
commit b82d464b12
11 changed files with 487 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
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; }
}
}