Flow.Launcher/Flow.Launcher.Plugin/Interfaces/IAsyncReloadable.cs

9 lines
No EOL
150 B
C#

using System.Threading.Tasks;
namespace Flow.Launcher.Plugin
{
public interface IAsyncReloadable
{
Task ReloadDataAsync();
}
}