10 lines
170 B
C#
10 lines
170 B
C#
namespace Barcode.Host.Shared.Models.Stateless;
|
|
|
|
public interface ISerialService
|
|
{
|
|
|
|
void Open();
|
|
void Close();
|
|
void SerialPortWrite(int count, string raw);
|
|
|
|
} |