mirror of
https://github.com/SabreTools/BinaryObjectScanner.git
synced 2026-02-13 05:35:24 +00:00
24 lines
520 B
C#
24 lines
520 B
C#
namespace BinaryObjectScanner.Models.PFF
|
|
{
|
|
/// <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;
|
|
}
|
|
} |