revisiting inheritance

This commit is contained in:
Andrew Welker
2020-07-13 13:41:44 -06:00
parent 9a3cde0a30
commit c31a2a09de
12 changed files with 492 additions and 238 deletions

View File

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