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

9 lines
150 B
C#
Raw Normal View History

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