namespace WorkIndicator; internal static class AudioWatcher { public delegate void MicrophoneInUseChangedDelegate(bool microphoneInUse); public static event MicrophoneInUseChangedDelegate MicrophoneInUseChanged; public static void Start() { } public static void Stop() { } public static bool MicrophoneInUse() { return false; } }