namespace SabreTools.Data.Models.WIA
{
///
/// Describes a region of non-partition data (e.g. disc header, partition table).
/// Size: 0x18 bytes.
///
public sealed class RawDataEntry
{
///
/// Byte offset of this region within the equivalent ISO image
///
/// Big-endian
public ulong DataOffset { get; set; }
///
/// Size of this region in bytes
///
/// Big-endian
public ulong DataSize { get; set; }
///
/// Index into the group-entry array of the first group for this region
///
/// Big-endian
public uint GroupIndex { get; set; }
///
/// Number of groups covering this region
///
/// Big-endian
public uint NumberOfGroups { get; set; }
}
}