mirror of
https://github.com/jwetzell/qController.git
synced 2026-08-05 23:43:49 +00:00
73 lines
1.2 KiB
C#
73 lines
1.2 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using qController.QItems;
|
|
|
|
namespace qController.Communication
|
|
{
|
|
public class CueEventArgs : EventArgs
|
|
{
|
|
public QCue Cue
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
}
|
|
|
|
public class WorkspaceEventArgs : EventArgs
|
|
{
|
|
public QOldWorkspace UpdatedWorkspace
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
}
|
|
|
|
public class PlaybackPositionArgs : EventArgs
|
|
{
|
|
public string PlaybackPosition
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
}
|
|
|
|
public class ConnectEventArgs : EventArgs
|
|
{
|
|
public string Status
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
public string WorkspaceId
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
}
|
|
|
|
public class WorkspaceInfoArgs : EventArgs
|
|
{
|
|
public List<QWorkspaceInfo> WorkspaceInfo
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
}
|
|
|
|
public class ChildrenEventArgs : EventArgs
|
|
{
|
|
public string cue_id
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
public List<QCue> children
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
}
|
|
}
|