mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
13 lines
349 B
C#
13 lines
349 B
C#
using Flow.Launcher.Plugin;
|
|
|
|
namespace Flow.Launcher.Core
|
|
{
|
|
/// <summary>
|
|
/// Interface for the current application singleton object exposing the properties
|
|
/// and functions that can be accessed from anywhere in the application.
|
|
/// </summary>
|
|
public interface IApp
|
|
{
|
|
public IPublicAPI PublicAPI { get; }
|
|
}
|
|
}
|