aboutsummaryrefslogtreecommitdiff
path: root/ShiftOS.Engine/Terminal/TerminalCommand.cs
blob: 81a34b90b910062cdd2bcc8a8cefff58e5f564d2 (plain) (blame)
1
2
3
4
5
6
7
8
9
namespace ShiftOS.Engine.Terminal
{
	public abstract class TerminalCommand
	{
		public abstract string GetName();

		public abstract string Run(params string[] parameters);
	}
}