using System.Runtime.InteropServices;
namespace SabreTools.Data.Models.CHD
{
///
[StructLayout(LayoutKind.Sequential)]
public sealed class MapV1
{
///
/// Starting offset within the file
///
public ulong StartingOffset;
///
/// Length of data; If == hunksize, data is uncompressed
///
public ulong Length;
}
}