mirror of
https://github.com/ElectronNET/Electron.NET.git
synced 2026-02-04 05:34:51 +00:00
13 lines
232 B
C#
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();
|
|
}
|
|
}
|