Files

10 lines
261 B
C#
Raw Permalink Normal View History

2025-09-26 13:06:18 -04:00
namespace SabreTools.Data.Models.XZ
2025-09-26 10:57:15 -04:00
{
public static class Constants
{
2025-09-29 22:56:53 -04:00
public static readonly byte[] HeaderSignatureBytes = [0xFD, 0x37, 0x7A, 0x58, 0x5A, 0x00];
public static readonly byte[] FooterSignatureBytes = [0x59, 0x5A];
2025-09-26 10:57:15 -04:00
}
2025-09-29 23:12:23 -04:00
}