You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Lidarr/src/NzbDrone.Core/Messaging/Commands/Command.cs

37 lines
837 B

11 years ago
using System;
namespace NzbDrone.Core.Messaging.Commands
{
public abstract class Command
11 years ago
{
private bool _sendUpdatesToClient;
public virtual bool SendUpdatesToClient
{
get
{
return _sendUpdatesToClient;
}
set
{
_sendUpdatesToClient = value;
}
}
11 years ago
public virtual bool UpdateScheduledTask => true;
public virtual string CompletionMessage => "Completed";
11 years ago
public string Name { get; private set; }
public DateTime? LastExecutionTime { get; set; }
public CommandTrigger Trigger { get; set; }
public bool SuppressMessages { get; set; }
11 years ago
public Command()
11 years ago
{
Name = GetType().Name.Replace("Command", "");
}
}
}