mirror of
https://github.com/azaion/annotations.git
synced 2026-04-22 08:36:29 +00:00
10 lines
192 B
C#
10 lines
192 B
C#
namespace Azaion.Common.Services;
|
|
|
|
public interface IUICommandDispatcher
|
|
{
|
|
Task ExecuteAsync(Action action);
|
|
Task<T> ExecuteAsync<T>(Func<T> func);
|
|
void Execute(Action action);
|
|
}
|
|
|