8 lines
191 B
C#
8 lines
191 B
C#
namespace FileTime.App.CommandPalette.ViewModels;
|
|
|
|
public interface ICommandPaletteEntryViewModel
|
|
{
|
|
string Identifier { get; }
|
|
string Title { get; }
|
|
string Shortcuts { get; }
|
|
} |