Files
SabreTools.Models/XZP/Footer.cs
2023-11-07 20:57:05 -05:00

11 lines
259 B
C#

namespace SabreTools.Models.XZP
{
/// <see href="https://github.com/RavuAlHemio/hllib/blob/master/HLLib/XZPFile.h"/>
public sealed class Footer
{
public uint FileLength { get; set; }
public string? Signature { get; set; }
}
}