Remotely/ScreenCast.Core/Interfaces/IClipboardService.cs
2021-07-29 07:56:15 -07:00

14 lines
252 B
C#

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