namespace SabreTools.Data.Models.NintendoDisc
{
public class WiiPartitionGroup
{
///
/// Number of entries in the group
///
/// Big-endian
public uint Count { get; set; }
///
/// Offset to the start of the table
///
/// Big-endian, requires left bit shift of 2 to get the real value
public uint Offset { get; set; }
///
/// Entries for the group, stored at
///
/// Number of entries determined by
public WiiPartitionTableEntry[] Entries { get; set; } = [];
}
}