Files
BinaryObjectScanner/BinaryObjectScanner.Models/PFF/Footer.cs
Matt Nadareski 473cbc5694 BOS.* -> BOS.*
2023-03-07 16:59:14 -05:00

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;
}
}