15 lines
420 B
C#
15 lines
420 B
C#
namespace FileTime.App.Core.UserCommand;
|
|
|
|
public sealed class PauseCommandSchedulerCommand : IIdentifiableUserCommand
|
|
{
|
|
public const string CommandName = "pause_command_scheduler";
|
|
public static PauseCommandSchedulerCommand Instance { get; } = new();
|
|
|
|
private PauseCommandSchedulerCommand()
|
|
{
|
|
}
|
|
|
|
public string UserCommandID => CommandName;
|
|
|
|
public string Title => "Pause command scheduler";
|
|
} |