namespace MediaBrowser.Common.ScheduledTasks
{
public interface IConfigurableScheduledTask
{
///
/// Gets a value indicating whether this instance is hidden.
///
/// true if this instance is hidden; otherwise, false.
bool IsHidden { get; }
///
/// Gets a value indicating whether this instance is enabled.
///
/// true if this instance is enabled; otherwise, false.
bool IsEnabled { get; }
}
public interface IScheduledTaskActivityLog
{
bool IsActivityLogged { get; }
}
}