namespace SabreTools.Models.SFFS
{
///
/// Header
///
///
public sealed class Header
{
///
/// "SFFS"
///
public uint Magic { get; set; }
///
/// Version (0x00000001)
///
public uint Version { get; set; }
///
/// 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 { get; set; }
}
}