Move IKeyboardMouseInput interface.

This commit is contained in:
Jared Goodwin 2020-01-16 10:29:40 -08:00
parent 82ecea29c4
commit bc27bd77ea
5 changed files with 5 additions and 5 deletions

View File

@ -2,7 +2,7 @@
using Microsoft.Extensions.DependencyInjection;
using Remotely.Shared.Models;
using Remotely.ScreenCast.Core.Enums;
using Remotely.ScreenCast.Core.Input;
using Remotely.ScreenCast.Core.Interfaces;
using Remotely.ScreenCast.Core.Models;
using Remotely.ScreenCast.Core.Sockets;
using Remotely.ScreenCast.Core.Services;

View File

@ -5,7 +5,7 @@ using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Remotely.ScreenCast.Core.Input
namespace Remotely.ScreenCast.Core.Interfaces
{
public interface IKeyboardMouseInput
{

View File

@ -12,7 +12,7 @@ using System.Diagnostics;
using System.IO;
using System.Net;
using Remotely.ScreenCast.Core.Services;
using Remotely.ScreenCast.Core.Input;
using Remotely.ScreenCast.Core.Interfaces;
using Remotely.Shared.Win32;
using Remotely.ScreenCast.Core.Interfaces;
using Microsoft.Extensions.DependencyInjection;

View File

@ -1,4 +1,4 @@
using Remotely.ScreenCast.Core.Input;
using Remotely.ScreenCast.Core.Interfaces;
using Remotely.ScreenCast.Core.Services;
using Remotely.ScreenCast.Linux.X11Interop;
using Remotely.ScreenCast.Core;

View File

@ -1,4 +1,4 @@
using Remotely.ScreenCast.Core.Input;
using Remotely.ScreenCast.Core.Interfaces;
using Remotely.ScreenCast.Core.Models;
using System;
using Remotely.Shared.Win32;