DP-PatMe2Mqtt/PatMe2Mqtt/PatMeProxyApi/IPatMeProxy.cs
2023-05-26 15:55:33 +02:00

10 lines
224 B
C#

namespace PatMe2Mqtt.PatMeProxyApi
{
public interface IPatMeProxy
{
PatMe PatMe { get; }
object ProxiedValue { get; }
bool IsValid => PatMe is not null && ProxiedValue is not null;
}
}