namespace BurnOutSharp.Models.LinearExecutable
{
///
/// The `LINEAR` executable-file header contains information that the loader requires for
/// segmented executable files. This information includes the linker version number, data
/// specified by linker, data specified by resource compiler, tables of segment data, tables
/// of resource data, and so on. The following illustrations shows the LE file header:
///
///
///
public class Executable
{
///
/// MS-DOS executable header
///
public MSDOS.ExecutableHeader Stub { get; set; }
}
}