IConfigurableScheduledTask.cs 904 B

1234567891011121314151617181920212223242526
  1. namespace MediaBrowser.Model.Tasks
  2. {
  3. /// <summary>
  4. /// Interface for configurable scheduled tasks.
  5. /// </summary>
  6. public interface IConfigurableScheduledTask
  7. {
  8. /// <summary>
  9. /// Gets a value indicating whether this instance is hidden.
  10. /// </summary>
  11. /// <value><c>true</c> if this instance is hidden; otherwise, <c>false</c>.</value>
  12. bool IsHidden { get; }
  13. /// <summary>
  14. /// Gets a value indicating whether this instance is enabled.
  15. /// </summary>
  16. /// <value><c>true</c> if this instance is enabled; otherwise, <c>false</c>.</value>
  17. bool IsEnabled { get; }
  18. /// <summary>
  19. /// Gets a value indicating whether this instance is logged.
  20. /// </summary>
  21. /// <value><c>true</c> if this instance is logged; otherwise, <c>false</c>.</value>
  22. bool IsLogged { get; }
  23. }
  24. }