Remotely/ScreenCast.Core/Interfaces/IClipboardService.cs

12 lines
216 B
C#

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