mirror of
https://github.com/jwetzell/qController.git
synced 2026-08-04 15:07:55 +00:00
18 lines
337 B
C#
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;
|
|
|
|
}
|
|
}
|
|
}
|