fa258cf09b
-Update libreria x Pro3Em
13 lines
306 B
C#
13 lines
306 B
C#
using EgwProxy.Shelly.DTO;
|
|
using System;
|
|
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace EgwProxy.Shelly.Clients
|
|
{
|
|
public interface IShellyPro3Em
|
|
{
|
|
Task<ShellyResult<ShellyGen2StatusDto>> GetStatus(CancellationToken cancellationToken, TimeSpan? timeout = null);
|
|
}
|
|
}
|