pschelpdesk/Shared/Service/IUserInterfaceDispatchService.cs
2024-11-08 18:50:58 +01:00

8 lines
166 B
C#

namespace PSCHelpdesk.Shared.Service;
public interface IUserInterfaceDispatchService
{
void Invoke(Action action);
Task InvokeAsync(Action action);
}