Dirs can be nested

This commit is contained in:
Matt Nadareski
2025-06-24 12:32:14 -04:00
parent e8f4386199
commit 0c4e3b4bf2

View File

@@ -10,6 +10,9 @@ namespace SabreTools.Models.Logiqx
[XmlAttribute("name")]
public string? Name { get; set; }
[XmlElement("dir", typeof(Game))]
public Dir[]? Subdir { get; set; }
[XmlElement("game", typeof(Game))]
[XmlElement("machine", typeof(Machine))]
public GameBase[]? Game { get; set; }