add IHasBranding Interface

This commit is contained in:
Andrew Welker
2020-09-08 16:24:52 -06:00
parent f5d7c90be1
commit ea28b8afa4

View File

@@ -0,0 +1,8 @@
namespace PepperDash_Essentials_Core.DeviceTypeInterfaces
{
public interface IHasBranding
{
bool BrandingEnabled { get; }
void InitializeBranding(string roomKey);
}
}