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