16 lines
353 B
C#
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;
|
|
}
|
|
}
|