Remotely/Desktop.Core/Interfaces/IClipboardService.cs

15 lines
279 B
C#

using System;
using System.Threading.Tasks;
namespace Remotely.Desktop.Core.Interfaces
{
public interface IClipboardService
{
event EventHandler<string> ClipboardTextChanged;
void BeginWatching();
Task SetText(string clipboardText);
}
}