Files
desktop/WirelessTextSyncer.Windows/Models/SyncAction.cs
Misaka 30da1680f2 Add system mute control via setMute action
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>
2026-06-17 22:12:13 +08:00

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
}