using System; namespace Remotely.ScreenCast.Core.Interfaces { public interface IClipboardService { event EventHandler ClipboardTextChanged; void BeginWatching(); void SetText(string clipboardText); } }