fix: reformat using C# rules

This commit is contained in:
ZavaruKitsu
2022-10-08 19:26:34 +03:00
parent a731e2a8d0
commit 5ab15621a0
180 changed files with 13136 additions and 13081 deletions
+12 -16
View File
@@ -1,25 +1,21 @@
namespace SystemCommandsBot.commands
namespace SystemCommandsBot.commands;
public class Commando
{
public class Commando
{
public int Id { get; set; }
public int Id { get; set; }
public string Title { get; set; }
public string Title { get; set; }
public string ShellCmd { get; set; }
public string ShellCmd { get; set; }
public bool Enabled { get; set; } = true;
public bool Enabled { get; set; } = true;
public string Action { get; set; }
public string Action { get; set; }
public bool UseShell { get; set; } = true;
public bool UseShell { get; set; } = true;
public int? MaxInstances { get; set; }
public int? MaxInstances { get; set; }
public string ProcName
{
get;set;
}
}
}
public string ProcName { get; set; }
}