mirror of
https://github.com/SabreTools/SabreTools.Models.git
synced 2026-07-27 03:02:15 +00:00
17 lines
449 B
C#
17 lines
449 B
C#
namespace SabreTools.Models.CHD
|
|
{
|
|
/// <see href="https://github.com/mamedev/mame/blob/master/src/lib/util/chd.h"/>
|
|
public class MapV1
|
|
{
|
|
/// <summary>
|
|
/// Starting offset within the file
|
|
/// </summary>
|
|
public ulong StartingOffset { get; set; }
|
|
|
|
/// <summary>
|
|
/// Length of data; If == hunksize, data is uncompressed
|
|
/// </summary>
|
|
public ulong Length { get; set; }
|
|
}
|
|
}
|