2019-01-13 20:02:23 +00:00
|
|
|
namespace MediaBrowser.Model.Tasks
|
2018-12-27 23:27:57 +00: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; }
|
|
|
|
/// <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; }
|
|
|
|
}
|
2019-01-13 19:31:15 +00:00
|
|
|
}
|