Files
SabreTools.Models/SFFS/FileHeader.cs
Matt Nadareski 41a90278d5 Remove LayoutKind.Sequential
This may be replaced in the future when byte-serialzable types are more well-defined
2023-09-10 21:33:22 -04:00

22 lines
590 B
C#

namespace SabreTools.Models.SFFS
{
/// <see href="https://forum.xentax.com/viewtopic.php?f=21&t=2084"/>
public sealed class FileHeader
{
/// <summary>
/// Start of file content (encrypted with filename)
/// </summary>
public ulong FileContentStart { get; set; }
/// <summary>
/// File info (timestamps, size, data position, encrypted)
/// </summary>
/// <remarks>Unknown format</remarks>
#if NET48
public byte[] FileInfo { get; set; }
#else
public byte[]? FileInfo { get; set; }
#endif
}
}