8 lines
164 B
C#
8 lines
164 B
C#
namespace TheXamlGuy.Framework.Serial;
|
|
|
|
public interface ISerialConfiguration
|
|
{
|
|
public string PortName { get; set; }
|
|
|
|
public int BaudRate { get; set; }
|
|
} |