laatzen/Common/Hardware/Common.Hardware.Ports/SerialPortSettings.cs
2024-11-13 15:50:04 +01:00

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; }
}
}