Files
samuele fa258cf09b Shelly:
-Update libreria  x Pro3Em
2025-08-06 18:38:31 +02:00

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);
}
}