2022-10-15 18:51:26 +03:00

22 lines
393 B
C#

namespace SystemCommandsBot;
public class Command
{
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; }
}