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>
15 lines
241 B
C#
15 lines
241 B
C#
namespace WirelessTextSyncer.Windows.Models;
|
|
|
|
using System.Text.Json.Serialization;
|
|
|
|
[JsonConverter(typeof(SyncActionJsonConverter))]
|
|
public enum SyncAction
|
|
{
|
|
InsertText,
|
|
ReplaceAll,
|
|
Backspace,
|
|
Enter,
|
|
Ping,
|
|
SetMute
|
|
}
|