IConfigurableScheduledTask.cs 641 B

123456789101112131415161718192021
  1. #pragma warning disable CS1591
  2. namespace MediaBrowser.Model.Tasks
  3. {
  4. public interface IConfigurableScheduledTask
  5. {
  6. /// <summary>
  7. /// Gets a value indicating whether this instance is hidden.
  8. /// </summary>
  9. /// <value><c>true</c> if this instance is hidden; otherwise, <c>false</c>.</value>
  10. bool IsHidden { get; }
  11. /// <summary>
  12. /// Gets a value indicating whether this instance is enabled.
  13. /// </summary>
  14. /// <value><c>true</c> if this instance is enabled; otherwise, <c>false</c>.</value>
  15. bool IsEnabled { get; }
  16. bool IsLogged { get; }
  17. }
  18. }