namespace BinaryObjectScanner.Models.N3DS { /// /// There are 64 of these records, usually only the first is used. /// /// public sealed class ContentInfoRecord { /// /// Content index offset /// public ushort ContentIndexOffset; /// /// Content command count [k] /// public ushort ContentCommandCount; /// /// SHA-256 hash of the next k content records that have not been hashed yet /// public byte[] UnhashedContentRecordsSHA256Hash; } }