mirror of
https://github.com/jwetzell/QControlKit.git
synced 2026-08-08 17:03:50 +00:00
20 lines
386 B
C#
20 lines
386 B
C#
using System.Collections.Generic;
|
|
|
|
namespace QSharp
|
|
{
|
|
public class QCue
|
|
{
|
|
Dictionary<string,object> cueData = new Dictionary<string,object>();
|
|
public QCue()
|
|
{
|
|
}
|
|
|
|
public object propertyForKey(string key)
|
|
{
|
|
if (cueData.ContainsKey(key))
|
|
return cueData[key];
|
|
return null;
|
|
}
|
|
}
|
|
}
|