Inheritance

This commit is contained in:
Andrew Welker
2020-07-14 09:50:25 -06:00
parent c31a2a09de
commit 4db91b4f68
2 changed files with 5 additions and 142 deletions

View File

@@ -1,16 +1,14 @@
using PepperDash.Essentials.Core;
namespace PepperDash.Essentials
namespace PepperDash.Essentials
{
public interface IHasCalendarButton
{
EssentialsRoomBase CurrentRoom { get; }
EssentialsHuddleVtc1Room CurrentRoom { get; }
void CalendarPress();
}
public interface IHasCallButton
{
EssentialsRoomBase CurrentRoom { get; }
EssentialsHuddleVtc1Room CurrentRoom { get; }
void ShowActiveCallsList();
}
}