10 lines
238 B
C#
Raw Normal View History

2024-11-13 17:50:52 +08:00
namespace JiShe.CollectBus.Application.Contracts
{
public interface ICommandService
{
Task<bool> AmmeterParameterSendAsync();
bool AmmeterParameterReading();
bool ActivePowerIndicationReading();
}
}