CPF/CPF.Toolkit/Input/IAsyncCommand.cs
luxiaoqi 8decf9e554 1
2023-11-23 13:38:29 +08:00

15 lines
277 B
C#

using System;
using System.Collections.Generic;
using System.Text;
using System.Threading.Tasks;
namespace CPF.Toolkit.Input
{
public interface IAsyncCommand
{
Task ExecutionTask { get; }
bool IsRunning { get; }
Task ExecuteAsync();
}
}