Introduce a setMute protocol action and an NAudio-backed AudioControlService so the Android client can toggle the Windows render endpoint mute state over WebSocket. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
9 lines
147 B
C#
9 lines
147 B
C#
namespace WirelessTextSyncer.Windows.Services;
|
|
|
|
public interface IAudioControlService
|
|
{
|
|
bool IsMuted { get; }
|
|
|
|
void SetMute(bool muted);
|
|
}
|