SafeDispatch/SafeMobileLIB_DLL/Tetra/SerialKey.cs
2024-02-22 18:43:59 +02:00

16 lines
353 B
C#

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;
}
}