namespace SabreTools.Models.GCF { /// public sealed class BlockEntry { /// /// Flags for the block entry. 0x200F0000 == Not used. /// public uint EntryFlags { get; set; } /// /// The offset for the data contained in this block entry in the file. /// public uint FileDataOffset { get; set; } /// /// The length of the data in this block entry. /// public uint FileDataSize { get; set; } /// /// The offset to the first data block of this block entry's data. /// public uint FirstDataBlockIndex { get; set; } /// /// The next block entry in the series. (N/A if == BlockCount.) /// public uint NextBlockEntryIndex { get; set; } /// /// The previous block entry in the series. (N/A if == BlockCount.) /// public uint PreviousBlockEntryIndex { get; set; } /// /// The offset of the block entry in the directory. /// public uint DirectoryIndex { get; set; } } }