namespace SabreTools.Models.N3DS
{
///
/// Offset and Length partition table, in media units
///
///
public sealed class PartitionTableEntry
{
///
/// Offset
///
public uint Offset { get; set; }
///
/// Length
///
public uint Length { get; set; }
}
}