namespace SabreTools.Models.SFFS { /// public sealed class FileHeader { /// /// Start of file content (encrypted with filename) /// public ulong FileContentStart { get; set; } /// /// File info (timestamps, size, data position, encrypted) /// /// Unknown format #if NET48 public byte[] FileInfo { get; set; } #else public byte[]? FileInfo { get; set; } #endif } }