namespace SabreTools.Models.N3DS { /// /// There are a maximum of 10 file headers in the ExeFS format. (This maximum /// number of file headers is disputable, with makerom indicating a maximum of /// 8 sections and makecia indicating a maximum of 10. From a non-SDK point of /// view, the ExeFS header format can hold no more than 10 file headers within /// the currently define size of 0x200 bytes.) /// /// public sealed class ExeFSFileHeader { /// /// File name /// public string? FileName { get; set; } /// /// File offset /// public uint FileOffset { get; set; } /// /// File size /// public uint FileSize { get; set; } /// /// SHA256 hash calculated over the entire file contents /// public byte[]? FileHash { get; set; } } }