aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Tasks/IConfigurableScheduledTask.cs
blob: b4f99208d025297158d3d92670444c72225417b0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
namespace MediaBrowser.Model.Tasks
{
    /// <summary>
    /// Interface for configurable scheduled tasks.
    /// </summary>
    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; }

        /// <summary>
        /// Gets a value indicating whether this instance is logged.
        /// </summary>
        /// <value><c>true</c> if this instance is logged; otherwise, <c>false</c>.</value>
        bool IsLogged { get; }
    }
}