Files
qController/qController.Standard/Classes/Settings/QCommand.cs
T
2019-07-17 13:57:15 -05:00

18 lines
337 B
C#

namespace qController
{
public class QCommand
{
public string osc;
public string text;
public string type;
public QCommand(string display, string cmd, string command_type)
{
text = display;
osc = cmd;
type = command_type;
}
}
}