jellyfin/MediaBrowser.Model/Tasks/IConfigurableScheduledTask.cs

22 lines
641 B
C#
Raw Normal View History

2020-02-03 19:49:27 -05:00
#pragma warning disable CS1591
namespace MediaBrowser.Model.Tasks
2018-12-27 18:27:57 -05:00
{
public interface IConfigurableScheduledTask
{
/// <summary>
/// Gets a value indicating whether this instance is hidden.
/// </summary>
/// <value><c>true</c> if this instance is hidden; otherwise, <c>false</c>.</value>
bool IsHidden { get; }
2020-09-28 16:04:31 -04:00
2018-12-27 18:27:57 -05:00
/// <summary>
/// Gets a value indicating whether this instance is enabled.
/// </summary>
/// <value><c>true</c> if this instance is enabled; otherwise, <c>false</c>.</value>
bool IsEnabled { get; }
bool IsLogged { get; }
}
}