namespace SabreTools.Data.Models.STFS
{
///
/// STFS Optional header present in STFS packages for installers
/// Original research, field not mentioned on free60 wiki
///
public class InstallerHeader
{
///
/// String indicating type of installer
/// See Constants.InstallerType*
///
/// 4 bytes, ASCII
public byte[] InstallerType { get; set; } = new byte[4];
}
}