mirror of
https://github.com/ShiftOS-Rewind/ShiftOS.git
synced 2025-01-23 02:02:15 +00:00
19 lines
384 B
C#
19 lines
384 B
C#
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) {
|
|
|
|
}
|
|
}
|
|
}
|