Add missing ClipboardService.

This commit is contained in:
Jared Goodwin 2020-05-03 10:12:17 -07:00
parent 182e030c30
commit ea624db4f6

View File

@ -20,12 +20,14 @@ namespace Remotely.ScreenCast.Core.Communication
IKeyboardMouseInput keyboardMouseInput,
IScreenCaster screenCastService,
IAudioCapturer audioCapturer,
IFileTransferService fileDownloadService)
IFileTransferService fileDownloadService,
IClipboardService clipboardService)
{
KeyboardMouseInput = keyboardMouseInput;
AudioCapturer = audioCapturer;
ScreenCaster = screenCastService;
FileDownloadService = fileDownloadService;
ClipboardService = clipboardService;
}
public HubConnection Connection { get; private set; }