mirror of
https://github.com/SabreTools/SabreTools.Models.git
synced 2026-09-24 15:47:27 +00:00
11 lines
259 B
C#
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; }
|
|
}
|
|
}
|