mirror of
https://github.com/SabreTools/SabreTools.Serialization.git
synced 2026-09-22 14:55:11 +00:00
Add No-Intro database export models
This commit is contained in:
12
SabreTools.Data.Models/NoIntroDatabase/Datafile.cs
Normal file
12
SabreTools.Data.Models/NoIntroDatabase/Datafile.cs
Normal 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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user