12 lines
361 B
C#
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; }
|
|
} |