Files
FileTime2/src/AppCommon/FileTime.App.CommandPalette.Abstractions/ViewModels/ICommandPaletteEntryViewModel.cs

8 lines
191 B
C#

namespace FileTime.App.CommandPalette.ViewModels;
public interface ICommandPaletteEntryViewModel
{
string Identifier { get; }
string Title { get; }
string Shortcuts { get; }
}