17 lines
378 B
C#
17 lines
378 B
C#
namespace Common.Hardware.Ports
|
|
{
|
|
using System;
|
|
|
|
public class SerialPortSettings
|
|
{
|
|
public SerialPortBaudRate BaudRate { get; set; }
|
|
|
|
public SerialPortDataBits DataBits { get; set; }
|
|
|
|
public SerialPortParity Parity { get; set; }
|
|
|
|
public String PortName { get; set; }
|
|
|
|
public SerialPortStopBits StopBits { get; set; }
|
|
}
|
|
} |