using System.Runtime.InteropServices;
namespace SabreTools.Data.Models.PFF
{
///
/// PFF file footer
///
///
[StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi)]
public sealed class Footer
{
///
/// Current system IP
///
public uint SystemIP;
///
/// Reserved
///
public uint Reserved;
///
/// King tag
///
[MarshalAs(UnmanagedType.ByValTStr, SizeConst = 4)]
public string KingTag = string.Empty;
}
}