8 lines
123 B
C#
8 lines
123 B
C#
namespace Toolkit.Foundation;
|
|
|
|
public interface IDispatcher
|
|
{
|
|
Task Invoke(Action action);
|
|
|
|
bool CheckAccess();
|
|
} |