Update of /cvsroot/adapdev/Adapdev/src/Adapdev/Commands
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19977/src/Adapdev/Commands
Added Files:
ICommand.cs
Log Message:
Reposting to the repository after it got hosed
--- NEW FILE: ICommand.cs ---
using System;
namespace Adapdev.Commands
{
/// <summary>
/// Summary description for ICommand.
/// </summary>
public interface ICommand
{
void Execute();
}
}
|