using System; using System.Collections.Generic; using System.Linq; using System.Text; using Crestron.SimplSharp; namespace PepperDash.Essentials.Core { /// /// Defines the contract for IBasicVideoMute /// public interface IBasicVideoMute { void VideoMuteToggle(); } /// /// Defines the contract for IBasicVideoMuteWithFeedback /// public interface IBasicVideoMuteWithFeedback : IBasicVideoMute { BoolFeedback VideoMuteIsOn { get; } void VideoMuteOn(); void VideoMuteOff(); } }