namespace SabreTools.Data.Models.COFF.SymbolTableEntries
{
///
/// Auxiliary Format 4: Files
///
/// This format follows a symbol-table record with storage class FILE (103).
/// The symbol name itself should be .file, and the auxiliary record that
/// follows it gives the name of a source-code file.
///
///
public class FileRecord : BaseEntry
{
///
/// An ANSI string that gives the name of the source file. This is padded
/// with nulls if it is less than the maximum length.
///
/// 18 bytes
public byte[] FileName { get; set; } = new byte[18];
}
}