mirror of
https://github.com/ElectronNET/Electron.NET.git
synced 2026-07-09 18:27:36 +00:00
12 lines
208 B
C#
12 lines
208 B
C#
using System.Threading.Tasks;
|
|
|
|
namespace ElectronNET.AspNet.Runtime
|
|
{
|
|
internal interface IAppReadyCallbackResolver
|
|
{
|
|
public bool HasCallback { get; }
|
|
|
|
public Task Invoke();
|
|
}
|
|
}
|