Files

25 lines
564 B
C#
Raw Permalink Normal View History

2025-09-26 10:20:48 -04:00
using System.Xml;
using System.Xml.Serialization;
2025-09-26 13:06:18 -04:00
namespace SabreTools.Data.Models.OpenMSX
2025-09-26 10:20:48 -04:00
{
/// <summary>
/// Base class to unify the various rom types
/// </summary>
public abstract class RomBase
{
[XmlElement("start")]
public string? Start { get; set; }
[XmlElement("type")]
public string? Type { get; set; }
/// <remarks>SHA-1 hash</remarks>
[XmlElement("hash")]
public string? Hash { get; set; }
[XmlElement("remark")]
public string? Remark { get; set; }
}
2026-01-27 12:03:01 -05:00
}