blob: b5dd8bf858e67ae3449369a13fc3f7faf36e0d2a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ShiftOS.Engine.Terminal
{
public class TerminalCommand
{
public string GetName() { return ""; }
public void Run(params string[] parameters) { return ""; }
public void Run(params string[] parameters) {
}
}
}
|