using System.Runtime.InteropServices;
namespace SabreTools.Data.Models.N3DS
{
///
/// Offset and Length partition table, in media units
///
///
[StructLayout(LayoutKind.Sequential)]
public sealed class PartitionTableEntry
{
///
/// Offset
///
public uint Offset;
///
/// Length
///
public uint Length;
}
}