namespace SabreTools.Data.Models.WIA
{
///
/// Describes a single Wii partition: its AES title key and two sector ranges.
/// Size: 0x30 bytes.
///
public sealed class PartitionEntry
{
///
/// Decrypted AES-128 partition title key
///
/// 16 bytes
public byte[] PartitionKey { get; set; } = new byte[16];
///
/// First sector range for this partition (typically encrypted data)
///
public PartitionDataEntry DataEntry0 { get; set; } = new();
///
/// Second sector range for this partition (typically decrypted/raw data)
///
public PartitionDataEntry DataEntry1 { get; set; } = new();
}
}