mirror of
https://github.com/SabreTools/SabreTools.Models.git
synced 2026-09-24 15:47:27 +00:00
24 lines
551 B
C#
24 lines
551 B
C#
namespace SabreTools.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 { get; set; }
|
|
|
|
/// <summary>
|
|
/// Reserved
|
|
/// </summary>
|
|
public uint Reserved { get; set; }
|
|
|
|
/// <summary>
|
|
/// King tag
|
|
/// </summary>
|
|
public string? KingTag { get; set; }
|
|
}
|
|
} |