Remotely/ScreenCast.Core/Interfaces/IClipboardService.cs
2021-07-29 07:54:00 -07: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);
}
}