mirror of
https://gitee.com/csharpui/CPF.git
synced 2025-08-20 09:29:00 +08:00
14 lines
292 B
C#
14 lines
292 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace CPF.Toolkit.Dialogs
|
|
{
|
|
public interface ILoading
|
|
{
|
|
event Func<string, Task, Task<object>> ShowLoadingFunc;
|
|
event Func<string, Task,Task> ShowLoading;
|
|
}
|
|
}
|