Files
SabreTools.Models/PFF/Footer.cs
2023-09-10 21:24:10 -04:00

28 lines
618 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>
#if NET48
public string KingTag { get; set; }
#else
public string? KingTag { get; set; }
#endif
}
}