mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-01-29 04:15:00 +00:00
28 lines
606 B
C#
28 lines
606 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using Crestron.SimplSharp;
|
|
|
|
namespace PepperDash.Essentials.Core
|
|
{
|
|
/// <summary>
|
|
/// Defines the contract for IBasicVideoMute
|
|
/// </summary>
|
|
public interface IBasicVideoMute
|
|
{
|
|
void VideoMuteToggle();
|
|
}
|
|
|
|
/// <summary>
|
|
/// Defines the contract for IBasicVideoMuteWithFeedback
|
|
/// </summary>
|
|
public interface IBasicVideoMuteWithFeedback : IBasicVideoMute
|
|
{
|
|
BoolFeedback VideoMuteIsOn { get; }
|
|
|
|
void VideoMuteOn();
|
|
void VideoMuteOff();
|
|
|
|
}
|
|
} |