From ea28b8afa44813ba3d8c29412ca6f5ca020e5bce Mon Sep 17 00:00:00 2001 From: Andrew Welker Date: Tue, 8 Sep 2020 16:24:52 -0600 Subject: [PATCH] add IHasBranding Interface --- .../DeviceTypeInterfaces/IHasBranding.cs | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 essentials-framework/Essentials Core/PepperDashEssentialsBase/DeviceTypeInterfaces/IHasBranding.cs diff --git a/essentials-framework/Essentials Core/PepperDashEssentialsBase/DeviceTypeInterfaces/IHasBranding.cs b/essentials-framework/Essentials Core/PepperDashEssentialsBase/DeviceTypeInterfaces/IHasBranding.cs new file mode 100644 index 00000000..d5c95c47 --- /dev/null +++ b/essentials-framework/Essentials Core/PepperDashEssentialsBase/DeviceTypeInterfaces/IHasBranding.cs @@ -0,0 +1,8 @@ +namespace PepperDash_Essentials_Core.DeviceTypeInterfaces +{ + public interface IHasBranding + { + bool BrandingEnabled { get; } + void InitializeBranding(string roomKey); + } +} \ No newline at end of file