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

20 lines
442 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace Remotely.Server.Models
{
public class CircuitEvent
{
public CircuitEvent(CircuitEventName eventName, params object[] args)
{
EventName = eventName;
Params = args;
}
public CircuitEventName EventName { get; set; }
public object[] Params { get; set; }
}
}