This commit is contained in:
2022-11-01 15:01:20 +01:00
parent e379f8b83f
commit aa61ef3ce1
33 changed files with 890 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
namespace Alma.Command;
public interface ICommand
{
public string CommandString { get; }
public Task Run(List<string> parameters);
}