mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-02-17 13:45:01 +00:00
Updated Interfaces to be more granular
This commit is contained in:
@@ -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);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user