Files
SabreTools.Models/N3DS/CodeSetInfo.cs
2023-09-10 21:24:10 -04:00

22 lines
559 B
C#

namespace SabreTools.Models.N3DS
{
/// <see href="https://www.3dbrew.org/wiki/NCCH/Extended_Header#Code_Set_Info"/>
public sealed class CodeSetInfo
{
/// <summary>
/// Address
/// </summary>
public uint Address { get; set; }
/// <summary>
/// Physical region size (in page-multiples)
/// </summary>
public uint PhysicalRegionSizeInPages { get; set; }
/// <summary>
/// Size (in bytes)
/// </summary>
public uint SizeInBytes { get; set; }
}
}