namespace SabreTools.Data.Models.NintendoDisc
{
///
/// A single entry in the Wii disc partition table.
/// The table lives at 0x40000-0x4FFFF on the disc.
///
///
public sealed class WiiPartitionTableEntry
{
///
/// Absolute byte offset of the partition on the disc
///
/// Big-endian, requires left bit shift of 2 to get the real value
public long Offset { get; set; }
///
/// Partition type: 0 = DATA, 1 = UPDATE, 2 = CHANNEL, or an ASCII title ID.
///
public uint Type { get; set; }
}
}