Files

22 lines
579 B
C#
Raw Permalink Normal View History

2025-09-26 10:20:48 -04:00
using System.Xml;
using System.Xml.Serialization;
2025-09-26 13:06:18 -04:00
namespace SabreTools.Data.Models.OfflineList
2025-09-26 10:20:48 -04:00
{
[XmlRoot("dat")]
public class Dat
{
[XmlAttribute(Namespace = "http://www.w3.org/2001/XMLSchema-instance", AttributeName = "noNamespaceSchemaLocation")]
public string? NoNamespaceSchemaLocation { get; set; }
[XmlElement("configuration")]
public Configuration? Configuration { get; set; }
[XmlElement("games")]
public Games? Games { get; set; }
[XmlElement("gui")]
public GUI? GUI { get; set; }
}
2026-01-27 12:03:01 -05:00
}