namespace BinaryObjectScanner.Models.Quantum
{
///
/// Quantum archive file descriptor
///
///
public class FileDescriptor
{
///
/// Length of file name
///
public int FileNameSize;
///
/// File name, variable length string, not zero-terminated
///
public string FileName;
///
/// Length of comment field
///
public int CommentFieldSize;
///
/// Comment field, variable length string, not zero-terminated
///
public string CommentField;
///
/// Fully expanded file size in bytes
///
public uint ExpandedFileSize;
///
/// File time (DOS format)
///
public ushort FileTime;
///
/// File date (DOS format)
///
public ushort FileDate;
///
/// Unknown data, Checksum?
///
/// Minor version 22
public ushort? Unknown;
}
}