namespace MediaBrowser.Model.Tasks { /// /// Interface for configurable scheduled tasks. /// 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; } /// /// Gets a value indicating whether this instance is logged. /// /// true if this instance is logged; otherwise, false. bool IsLogged { get; } } }