HamBook – Rev
?pathlinks?
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HamBook.Radios.Generic
{
public abstract class Constants
{
public const char EOT = ';';
public abstract int SQUELCH_MIN_STEP { get; set; }
}
}