IConfigurableScheduledTask.cs 671 B

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