Files
SabreTools/SabreTools.Models/OpenMSX/SoftwareDb.cs
2023-07-12 09:27:18 -04:00

15 lines
327 B
C#

using System.Xml;
using System.Xml.Serialization;
namespace SabreTools.Models.OpenMSX
{
[XmlRoot("softwaredb")]
public class SoftwareDb
{
[XmlAttribute("timestamp")]
public string? Timestamp { get; set; }
[XmlAttribute("software")]
public Software[]? Software { get; set; }
}
}