mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-04-12 12:06:58 +00:00
Updated Interfaces to be more granular
This commit is contained in:
parent
f2cb95af96
commit
efe8b15763
1 changed files with 9 additions and 4 deletions
|
|
@ -6,12 +6,17 @@ using Crestron.SimplSharp;
|
||||||
|
|
||||||
namespace PepperDash.Essentials.Core
|
namespace PepperDash.Essentials.Core
|
||||||
{
|
{
|
||||||
public interface IHasVideoMute
|
public interface IBasicVideoMute
|
||||||
|
{
|
||||||
|
void VideoMuteToggle();
|
||||||
|
}
|
||||||
|
|
||||||
|
public interface IBasicVideoMuteWithFeedback : IBasicVideoMute
|
||||||
{
|
{
|
||||||
BoolFeedback VideoMuteIsOn { get; }
|
BoolFeedback VideoMuteIsOn { get; }
|
||||||
|
|
||||||
void VideoMuteOn(bool pressRelease);
|
void VideoMuteOn();
|
||||||
void VideoMuteOff(bool pressRelease);
|
void VideoMuteOff();
|
||||||
void VideoMuteToggle(bool pressRelease);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue