Remotely/Agent/Services/AppLauncherMac.cs
2021-07-29 07:58:05 -07:00

26 lines
759 B
C#

using System.Collections.Generic;
using System.Threading.Tasks;
using Microsoft.AspNetCore.SignalR.Client;
using Remotely.Agent.Interfaces;
namespace Remotely.Agent.Services
{
public class AppLauncherMac : IAppLauncher
{
public async Task<int> LaunchChatService(string orgName, string requesterID, HubConnection hubConnection)
{
return 0;
}
public async Task LaunchRemoteControl(int targetSessionId, string requesterID, string serviceID, HubConnection hubConnection)
{
}
public async Task RestartScreenCaster(List<string> viewerIDs, string serviceID, string requesterID, HubConnection hubConnection, int targetSessionID = -1)
{
}
}
}