Files
client/Infrastructure/IUiDispatcher.cs

6 lines
111 B
C#
Raw Normal View History

2026-05-23 18:16:50 +08:00
namespace CloudPrint.Client.Infrastructure;
public interface IUiDispatcher
{
void Invoke(Action action);
}