Files
ACP/DeviceCommand/Base/IBaseInterface.cs
2026-07-29 13:12:27 +08:00

17 lines
358 B
C#

using NModbus;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DeviceCommand.Base
{
public interface IBaseInterface
{
public bool IsConnected { get; }
public Task<bool> ConnectAsync(CancellationToken ct = default);
public void Close();
}
}