SafeDispatch/SafeMobileLIB_DLL/Tetra/SerialKey.cs

16 lines
353 B
C#
Raw Normal View History

2024-02-22 16:43:59 +00:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SafeMobileLib.Tetra
{
public class SerialKey
{
public static readonly char CTRLZ = (char)26;
public static readonly char CR = (char)0x0d;
public static readonly char LF = (char)0x0a;
}
}