Files
BinaryObjectScanner/BinaryObjectScanner.Models/PFF/Segment.cs

46 lines
1.0 KiB
C#
Raw Normal View History

2023-03-07 16:59:14 -05:00
namespace BinaryObjectScanner.Models.PFF
2023-01-15 23:33:09 -08:00
{
/// <summary>
/// PFF segment identifier
/// </summary>
/// <see href="https://devilsclaws.net/download/file-pff-new-bz2"/>
public sealed class Segment
{
/// <summary>
/// Deleted flag
/// </summary>
public uint Deleted;
/// <summary>
/// File location
/// </summary>
public uint FileLocation;
/// <summary>
/// File size
/// </summary>
public uint FileSize;
/// <summary>
/// Packed date
/// </summary>
public uint PackedDate;
/// <summary>
/// File name
/// </summary>
public string FileName;
/// <summary>
/// Modified date
/// </summary>
/// <remarks>Only for versions 3 and 4</remarks>
public uint ModifiedDate;
/// <summary>
/// Compression level
/// </summary>
/// <remarks>Only for version 4</remarks>
public uint CompressionLevel;
}
}