mirror of
https://github.com/immense/Remotely.git
synced 2025-10-26 11:27:15 +00:00
20 lines
442 B
C#
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; }
|
|
}
|
|
}
|