mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-23 06:18:54 +00:00
33 lines
717 B
C#
33 lines
717 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace RsenkTest.Commands.Version
|
|
{
|
|
class Version : CommandBase
|
|
{
|
|
public override string Name
|
|
{
|
|
get { return "ver"; }
|
|
}
|
|
|
|
public override string Summary
|
|
{
|
|
get { return "Gets the version number."; }
|
|
}
|
|
|
|
public override void Help()
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public override void Execute(params ParameterBase[] args)
|
|
{
|
|
foreach (ParameterBase param in args)
|
|
{
|
|
param.Execute();
|
|
}
|
|
}
|
|
}
|
|
}
|