using System.Runtime.InteropServices;
namespace BinaryObjectScanner.Models.SFFS
{
///
[StructLayout(LayoutKind.Sequential)]
public sealed class FileHeader
{
///
/// Start of file content (encrypted with filename)
///
public ulong FileContentStart;
///
/// File info (timestamps, size, data position, encrypted)
///
/// Unknown format
public byte[] FileInfo;
}
}