mirror of
https://github.com/SabreTools/SabreTools.Models.git
synced 2026-09-25 16:16:56 +00:00
20 lines
443 B
C#
20 lines
443 B
C#
namespace SabreTools.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;
|
|
}
|
|
}
|