mirror of
https://github.com/SabreTools/BinaryObjectScanner.git
synced 2026-02-10 13:52:16 +00:00
11 lines
241 B
C#
11 lines
241 B
C#
namespace BinaryObjectScanner.Models.XZP
|
|
{
|
|
/// <see href="https://github.com/RavuAlHemio/hllib/blob/master/HLLib/XZPFile.h"/>
|
|
public sealed class Footer
|
|
{
|
|
public uint FileLength;
|
|
|
|
public string Signature;
|
|
}
|
|
}
|