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