Files
SabreTools/SabreTools.Models/OpenMSX/SoftwareDb.cs

15 lines
327 B
C#
Raw Normal View History

2023-07-12 09:27:18 -04:00
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; }
}
}