Files
FileTime2/src/AppCommon/FileTime.App.CommandPalette.Abstractions/Services/ICommandPaletteService.cs
2023-07-18 05:52:13 +02:00

12 lines
361 B
C#

using FileTime.App.CommandPalette.Models;
using FileTime.App.CommandPalette.ViewModels;
namespace FileTime.App.CommandPalette.Services;
public interface ICommandPaletteService
{
IObservable<bool> ShowWindow { get; }
void OpenCommandPalette();
IReadOnlyList<ICommandPaletteEntry> GetCommands();
ICommandPaletteViewModel? CurrentModal { get; }
}