namespace SabreTools.Data.Models.WIA
{
///
/// Describes a contiguous range of sectors within a Wii partition.
/// Part of a . Size: 0x10 bytes.
///
public sealed class PartitionDataEntry
{
///
/// Zero-based index of the first sector covered by this range
///
/// Big-endian
public uint FirstSector { get; set; }
///
/// Number of sectors covered by this range
///
/// Big-endian
public uint NumberOfSectors { get; set; }
///
/// Index into the group-entry array of the first group for this range
///
/// Big-endian
public uint GroupIndex { get; set; }
///
/// Number of groups covering this range
///
/// Big-endian
public uint NumberOfGroups { get; set; }
}
}