WIP CommandScheduler UI

This commit is contained in:
2023-01-31 23:26:36 +01:00
parent 06a9fc27d7
commit 30ecc6e515
37 changed files with 553 additions and 181 deletions

View File

@@ -0,0 +1,13 @@
namespace FileTime.App.Core.UserCommand;
public class PauseCommandSchedulerCommand : IIdentifiableUserCommand
{
public const string CommandName = "pause_command_scheduler";
public static PauseCommandSchedulerCommand Instance { get; } = new();
private PauseCommandSchedulerCommand()
{
}
public string UserCommandID => CommandName;
}

View File

@@ -0,0 +1,13 @@
namespace FileTime.App.Core.UserCommand;
public sealed class StartCommandSchedulerCommand : IIdentifiableUserCommand
{
public const string CommandName = "start_command_scheduler";
public static StartCommandSchedulerCommand Instance { get; } = new();
private StartCommandSchedulerCommand()
{
}
public string UserCommandID => CommandName;
}