Remotely/Server/Models/CircuitEventName.cs
2021-07-29 07:57:31 -07:00

24 lines
493 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace Remotely.Server.Models
{
public enum CircuitEventName
{
DisplayMessage,
UnattendedSessionReady,
ChatReceived,
CommandResult,
DeviceUpdate,
DownloadFile,
DownloadFileProgress,
DeviceWentOffline,
ScriptResult,
TransferCompleted,
PowerShellCompletions,
RemoteLogsReceived,
}
}