Files
BinaryObjectScanner/BinaryObjectScanner.Models/N3DS/PartitionTableEntry.cs

20 lines
452 B
C#
Raw Normal View History

2023-03-07 16:59:14 -05:00
namespace BinaryObjectScanner.Models.N3DS
2023-01-06 15:20:10 -08:00
{
/// <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;
}
}