SCLS/SSWCS_JXDL(2019)/ICommLayer/IGetSerialData.cs

17 lines
275 B
C#
Raw Permalink Normal View History

2025-05-19 09:45:29 +08:00
using System;
using System.Collections.Generic;
using System.Text;
namespace ICommLayer
{
public interface IGetSerialData
{
string GetSerialData(int DeviceIndex);
string CommLayerError
{
get;
set;
}
}
}