Files
QControlKit/QControlKit/Cue/QMidiFileCue.cs
T

32 lines
599 B
C#

using QControlKit.Constants;
namespace QControlKit.Cue
{
public class QMidiFileCue :QCue
{
public bool patch
{
get
{
return (bool)propertyForKey(QOSCKey.Patch);
}
set
{
setProperty(value, QOSCKey.Patch);
}
}
public bool rate
{
get
{
return (bool)propertyForKey(QOSCKey.Rate);
}
set
{
setProperty(value, QOSCKey.Rate);
}
}
}
}