using System.Runtime.InteropServices; namespace BinaryObjectScanner.Models.SFFS { /// /// Header /// /// [StructLayout(LayoutKind.Sequential)] public sealed class Header { /// /// "SFFS" /// public uint Magic; /// /// Version (0x00000001) /// public uint Version; /// /// Number of files in the container (encrypted with application key). /// Minimal number here is usually 65h, so its not real file count /// in some cases, more like index size /// public ulong FileCount; } }