IConfigurableScheduledTask.cs 687 B

123456789101112131415161718192021
  1. namespace MediaBrowser.Common.ScheduledTasks
  2. {
  3. public interface IConfigurableScheduledTask
  4. {
  5. /// <summary>
  6. /// Gets a value indicating whether this instance is hidden.
  7. /// </summary>
  8. /// <value><c>true</c> if this instance is hidden; otherwise, <c>false</c>.</value>
  9. bool IsHidden { get; }
  10. /// <summary>
  11. /// Gets a value indicating whether this instance is enabled.
  12. /// </summary>
  13. /// <value><c>true</c> if this instance is enabled; otherwise, <c>false</c>.</value>
  14. bool IsEnabled { get; }
  15. }
  16. public interface IScheduledTaskActivityLog
  17. {
  18. bool IsActivityLogged { get; }
  19. }
  20. }