mirror of
https://github.com/SabreTools/SabreTools.Models.git
synced 2026-07-21 16:24:23 +00:00
20 lines
469 B
C#
20 lines
469 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 { get; set; }
|
|
|
|
/// <summary>
|
|
/// Length
|
|
/// </summary>
|
|
public uint Length { get; set; }
|
|
}
|
|
}
|