using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace Amazon.Common.DotNetCli.Tools.Commands
{
///
/// Interface for commands to implement.
///
public interface ICommand
{
///
/// If enabled the tool will prompt for required fields if they are not already given.
///
bool DisableInteractive { get; set; }
Task ExecuteAsync();
}
}