CPF/CPF.Toolkit/Input/IAsyncCommand.cs

15 lines
277 B
C#
Raw Normal View History

2023-11-23 13:38:29 +08:00
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();
}
}