Files

24 lines
520 B
C#
Raw Permalink 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 file footer
/// </summary>
/// <see href="https://devilsclaws.net/download/file-pff-new-bz2"/>
public sealed class Footer
{
/// <summary>
/// Current system IP
/// </summary>
public uint SystemIP;
/// <summary>
/// Reserved
/// </summary>
public uint Reserved;
/// <summary>
/// King tag
/// </summary>
public string KingTag;
}
}