using System;
namespace Flow.Launcher.Plugin
{
///
/// A delegate for when the visibility is changed
///
///
///
public delegate void VisibilityChangedEventHandler(object sender, VisibilityChangedEventArgs args);
///
/// The event args for
///
public class VisibilityChangedEventArgs : EventArgs
{
///
/// if the main window has become visible
///
public bool IsVisible { get; init; }
}
}