namespace BinaryObjectScanner.Models.N3DS
{
///
public sealed class MetaData
{
///
/// Title ID dependency list - Taken from the application's ExHeader
///
/// TODO: Determine numeric format of each entry
public byte[] TitleIDDependencyList;
///
/// Reserved
///
public byte[] Reserved1;
///
/// Core Version
///
public uint CoreVersion;
///
/// Reserved
///
public byte[] Reserved2;
///
/// Icon Data(.ICN) - Taken from the application's ExeFS
///
public byte[] IconData;
}
}