17 lines
276 B
C#
17 lines
276 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace ICommLayer
|
|
{
|
|
public interface ISendSerialData
|
|
{
|
|
bool SendSerialData(int DeviceIndex);
|
|
string CommLayerError
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
}
|
|
}
|