mirror of
https://github.com/ShiftOS-Rewind/ShiftOS.git
synced 2025-01-23 10:12:16 +00:00
9 lines
No EOL
180 B
C#
9 lines
No EOL
180 B
C#
namespace ShiftOS.Engine.Terminal
|
|
{
|
|
public abstract class TerminalCommand
|
|
{
|
|
public abstract string GetName();
|
|
|
|
public abstract string Run(params string[] parameters);
|
|
}
|
|
} |