Files
SabreTools.Models/N3DS/PartitionTableEntry.cs

20 lines
469 B
C#
Raw Permalink Normal View History

2023-09-04 00:12:49 -04:00
namespace SabreTools.Models.N3DS
2023-09-04 00:11:04 -04: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>
2023-09-10 21:24:10 -04:00
public uint Offset { get; set; }
2023-09-04 00:11:04 -04:00
/// <summary>
/// Length
/// </summary>
2023-09-10 21:24:10 -04:00
public uint Length { get; set; }
2023-09-04 00:11:04 -04:00
}
}