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