using System.Runtime.InteropServices;
namespace BinaryObjectScanner.Models.SFFS
{
///
[StructLayout(LayoutKind.Sequential)]
public sealed class FileEntry
{
///
/// MD5 hash of filename (not encrypted,)
///
/// 0x10 bytes
public byte[] FilenameMD5Hash;
///
/// Index of fileheader (encrypted with filename)
///
public ulong FileHeaderIndex;
}
}