16 lines
399 B
C#
16 lines
399 B
C#
using System;
|
|
|
|
namespace TBF.Rig.RegisterReaders.CommonRR.IPerl
|
|
{
|
|
public interface ISerialPortData
|
|
{
|
|
|
|
public Boolean? CliExists { get;}
|
|
public string CmdClientName { get; set; }
|
|
public string PortName { get; set; }
|
|
public int MeterType { get; set; }
|
|
public string SerialPortCmdClientPath { get; }
|
|
public IArg MeterArg { get; }
|
|
|
|
}
|
|
} |