namespace SabreTools.Models.SFFS
{
///
public sealed class FileEntry
{
///
/// MD5 hash of filename (not encrypted,)
///
/// 0x10 bytes
#if NET48
public byte[] FilenameMD5Hash { get; set; }
#else
public byte[]? FilenameMD5Hash { get; set; }
#endif
///
/// Index of fileheader (encrypted with filename)
///
public ulong FileHeaderIndex { get; set; }
}
}