WIP CommandScheduler UI
This commit is contained in:
@@ -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;
|
||||
}
|
||||
@@ -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;
|
||||
}
|
||||
Reference in New Issue
Block a user