mirror of
https://github.com/jwetzell/qController.git
synced 2026-08-05 15:33:47 +00:00
23 lines
355 B
C#
23 lines
355 B
C#
using System;
|
|
namespace qController.Events
|
|
{
|
|
public class CueEditArgs : EventArgs
|
|
{
|
|
public string CueID
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
public string Property
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
public string NewValue
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
}
|
|
}
|