10 lines
164 B
C#
10 lines
164 B
C#
using System;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Wino.Core.Domain.Interfaces;
|
|
|
|
public interface IDispatcher
|
|
{
|
|
Task ExecuteOnUIThread(Action action);
|
|
}
|