16 lines
301 B
C#
16 lines
301 B
C#
using eCIAv2.Library.Config;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace eCIAv2.Library.Devices.DIIO
|
|
{
|
|
public interface IDIO : IDevice
|
|
{
|
|
public string GetDI();
|
|
public string SetDO();
|
|
}
|
|
}
|