namespace SabreTools.Data.Models.StarForce { /// 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 public byte[] FileInfo { get; set; } = []; } }