namespace SabreTools.Models.PFF
{
///
/// PFF file footer
///
///
public sealed class Footer
{
///
/// Current system IP
///
public uint SystemIP { get; set; }
///
/// Reserved
///
public uint Reserved { get; set; }
///
/// King tag
///
public string? KingTag { get; set; }
}
}