jellyfin/MediaBrowser.Model/Tasks/IConfigurableScheduledTask.cs

22 lines
641 B
C#
Raw Normal View History

2020-02-04 01:49:27 +01:00
#pragma warning disable CS1591
namespace MediaBrowser.Model.Tasks
2018-12-28 00:27:57 +01: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 22:04:31 +02:00
2018-12-28 00:27:57 +01: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; }
}
}