using System;
using System.IO.Ports;
using Xylem.Common.Hardware.Interfaces.Ports.PortCore;
namespace Xylem.Common.Hardware.WaterMeter.WaterMeterCore
{
///
/// holds port connection information
/// is used for all
///
public class PortConfig
{
///
/// using dotNets for connection
///
public SerialPort SerialPort;
///
/// Command Separator
///
public Type SerialPortType;
}
}