HamBook – Blame information for rev

Subversion Repositories:
Rev:
Rev Author Line No. Line
3 office 1 using System;
2 using System.Collections.Generic;
3 using System.Linq;
4 using System.Text;
5 using System.Threading.Tasks;
6  
7 namespace HamBook.Radios.Generic
8 {
9 public abstract class Constants
10 {
9 office 11 public const char EOT = ';';
3 office 12  
13 public abstract int SQUELCH_MIN_STEP { get; set; }
14 }
15 }