Update Logiqx DTD, add models (nw)

This commit is contained in:
Matt Nadareski
2023-07-12 10:40:21 -04:00
parent 14e765bcf5
commit 13af5a4f50
16 changed files with 707 additions and 35 deletions

View File

@@ -0,0 +1,12 @@
using System.Xml;
using System.Xml.Serialization;
namespace SabreTools.Models.Logiqx
{
[XmlRoot("sample")]
public class Sample
{
[XmlAttribute("name")]
public string Name { get; set; }
}
}