21 lines
402 B
C#
21 lines
402 B
C#
namespace SystemCommandsBot.commands;
|
|
|
|
public class Commando
|
|
{
|
|
public int Id { get; set; }
|
|
|
|
public string Title { get; set; }
|
|
|
|
public string ShellCmd { get; set; }
|
|
|
|
public bool Enabled { get; set; } = true;
|
|
|
|
public string Action { get; set; }
|
|
|
|
public bool UseShell { get; set; } = true;
|
|
|
|
|
|
public int? MaxInstances { get; set; }
|
|
|
|
public string ProcName { get; set; }
|
|
} |