namespace BinaryObjectScanner.Models.PFF
{
///
/// PFF segment identifier
///
///
public sealed class Segment
{
///
/// Deleted flag
///
public uint Deleted;
///
/// File location
///
public uint FileLocation;
///
/// File size
///
public uint FileSize;
///
/// Packed date
///
public uint PackedDate;
///
/// File name
///
public string FileName;
///
/// Modified date
///
/// Only for versions 3 and 4
public uint ModifiedDate;
///
/// Compression level
///
/// Only for version 4
public uint CompressionLevel;
}
}