mirror of
https://github.com/jwetzell/QControlKit.git
synced 2026-08-03 22:47:58 +00:00
86 lines
1.7 KiB
C#
86 lines
1.7 KiB
C#
using Newtonsoft.Json.Linq;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace QControlKit.Events
|
|
{
|
|
public class QServerFoundArgs : EventArgs
|
|
{
|
|
public QServer server { get; set; }
|
|
}
|
|
|
|
public class QServerUpdatedArgs : EventArgs
|
|
{
|
|
public QServer server { get; set; }
|
|
}
|
|
|
|
public class QWorkspacesUpdatedArgs : EventArgs
|
|
{
|
|
public List<QWorkspaceInfo> Workspaces { get; set; }
|
|
}
|
|
|
|
public class QWorkspaceUpdatedArgs : EventArgs
|
|
{
|
|
|
|
}
|
|
|
|
public class QWorkspaceSettingsUpdatedArgs : EventArgs
|
|
{
|
|
public string settingsType { get; set; }
|
|
|
|
}
|
|
|
|
public class QWorkspaceLightDashboardUpdatedArgs : EventArgs
|
|
{
|
|
|
|
}
|
|
|
|
public class QWorkspaceConnectedArgs : EventArgs
|
|
{
|
|
|
|
}
|
|
|
|
public class QWorkspaceDisconnectedArgs : EventArgs
|
|
{
|
|
|
|
}
|
|
|
|
public class QWorkspaceConnectionErrorArgs : EventArgs
|
|
{
|
|
public string status { get; set; }
|
|
}
|
|
public class QQLabPreferencesUpdatedArgs : EventArgs
|
|
{
|
|
public string key { get; set; }
|
|
|
|
}
|
|
|
|
public class QCueUpdatedArgs : EventArgs
|
|
{
|
|
public string cueID { get; set; }
|
|
public JToken data { get; set; }
|
|
}
|
|
|
|
public class QCuePropertiesUpdatedArgs : EventArgs
|
|
{
|
|
public List<string> properties { get; set; }
|
|
}
|
|
|
|
public class QCueListsUpdatedArgs : EventArgs
|
|
{
|
|
public JToken data { get; set; }
|
|
}
|
|
|
|
public class QCueNeedsUpdatedArgs : EventArgs
|
|
{
|
|
public string cueID { get; set; }
|
|
}
|
|
|
|
public class QCueListChangedPlaybackPositionArgs : EventArgs
|
|
{
|
|
public string cueListID { get; set; }
|
|
public string cueID { get; set; }
|
|
}
|
|
}
|
|
|