using System; namespace Remotely.ScreenCast.Core.Interfaces { public interface IAudioCapturer { event EventHandler AudioSampleReady; void ToggleAudio(bool toggleOn); } }