CommandData
C# class definition for CommandData
Class Definition
CommandData.cs
public class CommandData
{
public Guid Id { get; set; }
public string Name { get; set; }
public bool Enabled { get; set; }
public string Group { get; set; }
public int Mode { get; set; }
public List<string> Commands { get; set; }
public string RegexCommand { get; set; }
public bool CaseSensitive { get; set; }
public List<string> Sources { get; set; }
}
Properties
Id
Guid
Name
string
Enabled
bool
Group
string
Mode
int
Commands
List<string>
RegexCommand
string
CaseSensitive
bool
Sources
List<string>