namespace BinaryObjectScanner.Models.N3DS { /// /// There is one of these for each content contained in this title. /// (Determined by "Content Count" in the TMD Header). /// /// public sealed class ContentChunkRecord { /// /// Content id /// public uint ContentId; /// /// Content index /// /// /// This does not apply to DLC. /// public ContentIndex ContentIndex; /// /// Content type /// public TMDContentType ContentType; /// /// Content size /// public ulong ContentSize; /// /// SHA-256 hash /// public byte[] SHA256Hash; } }