Files
TheXamlGuy/Framework/Serial/SerialConnectionStreamer.cs
2022-11-01 15:26:08 +00:00

14 lines
275 B
C#

using System.IO.Ports;
namespace TheXamlGuy.Framework.Serial;
public class SerialConnectionStreamer : ISerialConnectionStreamer
{
public SerialConnectionStreamer(SerialPort serial)
{
Stream = serial.BaseStream;
}
public Stream Stream { get; }
}