Frequency navigation WIP
This commit is contained in:
@@ -9,4 +9,5 @@ public interface IModalService
|
||||
|
||||
void OpenModal(IModalViewModel modalToOpen);
|
||||
void CloseModal(IModalViewModel modalToClose);
|
||||
T OpenModal<T>() where T : IModalViewModel;
|
||||
}
|
||||
@@ -0,0 +1,14 @@
|
||||
namespace FileTime.App.Core.UserCommand;
|
||||
|
||||
public class GoByFrequencyCommand : IIdentifiableUserCommand
|
||||
{
|
||||
public const string CommandName = "go_by_frequency";
|
||||
|
||||
public static GoByFrequencyCommand Instance { get; } = new();
|
||||
|
||||
private GoByFrequencyCommand()
|
||||
{
|
||||
}
|
||||
|
||||
public string UserCommandID => CommandName;
|
||||
}
|
||||
Reference in New Issue
Block a user