Files

11 lines
177 B
C#
Raw Permalink Normal View History

2024-04-18 01:44:37 +02:00
using System;
using System.Threading.Tasks;
namespace Wino.Domain.Interfaces
2024-04-18 01:44:37 +02:00
{
public interface IDispatcher
{
Task ExecuteOnUIThread(Action action);
}
}