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