using MessagePack; using Pulsar.Common.Messages.Other; namespace Pulsar.Common.Messages.Monitoring.Clipboard { /// /// Message to enable or disable clipboard monitoring on the client. /// [MessagePackObject] public class SetClipboardMonitoringEnabled : IMessage { /// /// Gets or sets whether clipboard monitoring should be enabled. /// [Key(1)] public bool Enabled { get; set; } } }