common/Hardware/Common.Hardware.Ports/SerialPortSettings.cs
2026-04-23 17:50:07 +02: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; }
}
}