mirror of
https://github.com/SabreTools/SabreTools.Models.git
synced 2026-09-24 07:37:10 +00:00
15 lines
328 B
C#
15 lines
328 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; }
|
|
|
|
#if NET48
|
|
public string Signature { get; set; }
|
|
#else
|
|
public string? Signature { get; set; }
|
|
#endif
|
|
}
|
|
}
|