using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace FrodeTest.Application
{
interface IConsoleApplication
{
///
/// Runs the command.
///
///
/// 0 for success, negative number for general error
int Execute(string[] args);
///
/// The single-word command.
///
string CommandName { get; }
///
/// A descriptive text for this command.
///
string Description { get; }
}
}