Remotely/ScreenCast.Core/Interfaces/IClipboardService.cs
2019-12-16 15:07:46 -08:00

16 lines
305 B
C#

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