mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
21 lines
437 B
C#
21 lines
437 B
C#
using System.Xml;
|
|
using System.Xml.Serialization;
|
|
|
|
namespace SabreTools.Models.OpenMSX
|
|
{
|
|
[XmlRoot("rom")]
|
|
public class Rom
|
|
{
|
|
[XmlElement("start")]
|
|
public string? Start { get; set; }
|
|
|
|
[XmlElement("type")]
|
|
public string? Type { get; set; }
|
|
|
|
[XmlElement("hash")]
|
|
public string? Hash { get; set; }
|
|
|
|
[XmlElement("remark")]
|
|
public string? Remark { get; set; }
|
|
}
|
|
} |