mirror of
https://github.com/ekinnee/SharpCAT.git
synced 2026-01-13 20:09:59 +01:00
13 lines
207 B
C#
13 lines
207 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace SharpCATLib.Models
|
|
{
|
|
//Base Radio Model
|
|
class Radio
|
|
{
|
|
public readonly string CmdPad = "00000000";
|
|
}
|
|
}
|