2023-09-04 00:12:49 -04:00
|
|
|
namespace SabreTools.Models.N3DS
|
2023-09-04 00:11:04 -04:00
|
|
|
{
|
|
|
|
|
/// <see href="https://www.3dbrew.org/wiki/NCSD#Development_Card_Info_Header_Extension"/>
|
|
|
|
|
public sealed class DevelopmentCardInfoHeader
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// InitialData
|
|
|
|
|
/// </summary>
|
2023-09-04 21:14:41 -04:00
|
|
|
#if NET48
|
2023-09-10 21:24:10 -04:00
|
|
|
public InitialData InitialData { get; set; }
|
2023-09-04 21:14:41 -04:00
|
|
|
#else
|
2023-09-10 21:24:10 -04:00
|
|
|
public InitialData? InitialData { get; set; }
|
2023-09-04 21:14:41 -04:00
|
|
|
#endif
|
2023-09-04 00:11:04 -04:00
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// CardDeviceReserved1
|
|
|
|
|
/// </summary>
|
2023-09-04 21:14:41 -04:00
|
|
|
#if NET48
|
2023-09-10 21:24:10 -04:00
|
|
|
public byte[] CardDeviceReserved1 { get; set; }
|
2023-09-04 21:14:41 -04:00
|
|
|
#else
|
2023-09-10 21:24:10 -04:00
|
|
|
public byte[]? CardDeviceReserved1 { get; set; }
|
2023-09-04 21:14:41 -04:00
|
|
|
#endif
|
2023-09-04 00:11:04 -04:00
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// TitleKey
|
|
|
|
|
/// </summary>
|
2023-09-04 21:14:41 -04:00
|
|
|
#if NET48
|
2023-09-10 21:24:10 -04:00
|
|
|
public byte[] TitleKey { get; set; }
|
2023-09-04 21:14:41 -04:00
|
|
|
#else
|
2023-09-10 21:24:10 -04:00
|
|
|
public byte[]? TitleKey { get; set; }
|
2023-09-04 21:14:41 -04:00
|
|
|
#endif
|
2023-09-04 00:11:04 -04:00
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// CardDeviceReserved2
|
|
|
|
|
/// </summary>
|
2023-09-04 21:14:41 -04:00
|
|
|
#if NET48
|
2023-09-10 21:24:10 -04:00
|
|
|
public byte[] CardDeviceReserved2 { get; set; }
|
2023-09-04 21:14:41 -04:00
|
|
|
#else
|
2023-09-10 21:24:10 -04:00
|
|
|
public byte[]? CardDeviceReserved2 { get; set; }
|
2023-09-04 21:14:41 -04:00
|
|
|
#endif
|
2023-09-04 00:11:04 -04:00
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// TestData
|
|
|
|
|
/// </summary>
|
2023-09-04 21:14:41 -04:00
|
|
|
#if NET48
|
2023-09-10 21:24:10 -04:00
|
|
|
public TestData TestData { get; set; }
|
2023-09-04 21:14:41 -04:00
|
|
|
#else
|
2023-09-10 21:24:10 -04:00
|
|
|
public TestData? TestData { get; set; }
|
2023-09-04 21:14:41 -04:00
|
|
|
#endif
|
2023-09-04 00:11:04 -04:00
|
|
|
}
|
|
|
|
|
}
|