#pragma warning disable CS1591 namespace MediaBrowser.Model.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; } bool IsLogged { get; } } }