mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-20 12:58:39 +00:00
35 lines
849 B
C#
35 lines
849 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace RsenkTest.Commands.Version
|
|
{
|
|
class VerCommander : ParameterBase
|
|
{
|
|
public override string Name
|
|
{
|
|
get { return "commander"; }
|
|
}
|
|
|
|
public override string Summary
|
|
{
|
|
get { return "Gets the current version number of the Cosmos Commander Shell."; }
|
|
}
|
|
|
|
public override void Help()
|
|
{
|
|
Prompter.PrintMessage(""); //TODO: Finish this method
|
|
}
|
|
|
|
public override void Execute()
|
|
{
|
|
Prompter.PrintMessage("Commander 0.0.0.1 alpha\n");
|
|
}
|
|
|
|
public override void Execute(params ParameterBase[] args)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|
|
}
|