mirror of
https://github.com/SabreTools/BinaryObjectScanner.git
synced 2026-02-13 05:35:24 +00:00
11 lines
284 B
C#
11 lines
284 B
C#
namespace BinaryObjectScanner.Models.Quantum
|
|
{
|
|
public static class Constants
|
|
{
|
|
public static readonly byte[] SignatureBytes = new byte[] { 0x44, 0x53 };
|
|
|
|
public const string SignatureString = "DS";
|
|
|
|
public const ushort SignatureUInt16 = 0x5344;
|
|
}
|
|
} |