Files
Electron.NET/ElectronNET.CLI/Commands/ICommand.cs
2017-10-05 04:44:58 +02:00

13 lines
232 B
C#

using System.Threading.Tasks;
namespace ElectronNET.CLI.Commands
{
/// <summary>
/// Interface for commands to implement.
/// </summary>
public interface ICommand
{
Task<bool> ExecuteAsync();
}
}