Cosmos/source/Cosmos/Cosmos.Shell.Console/Commands/FSTestCommand.cs
moitoius_cp c420179ec7
2008-01-01 16:12:32 +00:00

17 lines
331 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace Cosmos.Shell.Console.Commands {
public class FSTestCommand : ICommand {
public override string Name {
get {
return "fstest";
}
}
public override void Execute() {
System.Console.WriteLine ("Testing...");
}
}
}