using System.Runtime.InteropServices; namespace SabreTools.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 #if NET48 public byte[] FileInfo; #else public byte[]? FileInfo; #endif } }