Remotely/Server/Models/CircuitEventName.cs
2023-04-25 15:09:57 -07:00

23 lines
461 B
C#

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