mirror of
https://github.com/SabreTools/BinaryObjectScanner.git
synced 2026-02-12 13:45:35 +00:00
20 lines
452 B
C#
20 lines
452 B
C#
namespace BinaryObjectScanner.Models.N3DS
|
|
{
|
|
/// <summary>
|
|
/// Offset and Length partition table, in media units
|
|
/// </summary>
|
|
/// <see href="https://www.3dbrew.org/wiki/NCSD#NCSD_header"/>
|
|
public sealed class PartitionTableEntry
|
|
{
|
|
/// <summary>
|
|
/// Offset
|
|
/// </summary>
|
|
public uint Offset;
|
|
|
|
/// <summary>
|
|
/// Length
|
|
/// </summary>
|
|
public uint Length;
|
|
}
|
|
}
|