mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-01-23 17:34:47 +00:00
14 lines
313 B
C#
14 lines
313 B
C#
namespace PepperDash.Essentials
|
|
{
|
|
public interface IHasCalendarButton
|
|
{
|
|
EssentialsHuddleVtc1Room CurrentRoom { get; }
|
|
void CalendarPress();
|
|
}
|
|
|
|
public interface IHasCallButton
|
|
{
|
|
EssentialsHuddleVtc1Room CurrentRoom { get; }
|
|
void ShowActiveCallsList();
|
|
}
|
|
} |