IConfigurableScheduledTask.cs 608 B

123456789101112131415161718
  1. namespace MediaBrowser.Model.Tasks
  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. bool IsLogged { get; }
  16. }
  17. }