2024-11-13 17:50:52 +08:00

10 lines
238 B
C#

namespace JiShe.CollectBus.Application.Contracts
{
public interface ICommandService
{
Task<bool> AmmeterParameterSendAsync();
bool AmmeterParameterReading();
bool ActivePowerIndicationReading();
}
}