10 lines
224 B
C#
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;
|
|||
|
}
|
|||
|
}
|