mirror of
https://github.com/SabreTools/SabreTools.Models.git
synced 2026-07-23 01:02:14 +00:00
21 lines
546 B
C#
21 lines
546 B
C#
namespace SabreTools.Models.CHD
|
|
{
|
|
/// <see href="https://github.com/mamedev/mame/blob/master/src/lib/util/chd.h"/>
|
|
public abstract class Header
|
|
{
|
|
/// <summary>
|
|
/// 'MComprHD'
|
|
/// </summary>
|
|
public string? Tag { get; set; }
|
|
|
|
/// <summary>
|
|
/// Length of header (including tag and length fields)
|
|
/// </summary>
|
|
public uint Length { get; set; }
|
|
|
|
/// <summary>
|
|
/// Drive format version
|
|
/// </summary>
|
|
public uint Version { get; set; }
|
|
}
|
|
} |