aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Tasks/IScheduledTask.cs
diff options
context:
space:
mode:
authorMax Git <rotvel@gmail.com>2020-06-03 12:26:50 +0200
committerMax Git <rotvel@gmail.com>2020-06-03 12:26:50 +0200
commit5df00cb2b8013c143097caa7e350da2be05cc077 (patch)
treeb763d4f74c62fd215fb86c1a9f267c568e9dd3aa /MediaBrowser.Model/Tasks/IScheduledTask.cs
parente81140be206cbb55120e5da23e79e6609a4507e6 (diff)
parent40502a33e0f0e3c84487be6d3eff2be35c1448ad (diff)
Merge branch 'master' into feature/ffmpeg-version-check
Diffstat (limited to 'MediaBrowser.Model/Tasks/IScheduledTask.cs')
-rw-r--r--MediaBrowser.Model/Tasks/IScheduledTask.cs11
1 files changed, 6 insertions, 5 deletions
diff --git a/MediaBrowser.Model/Tasks/IScheduledTask.cs b/MediaBrowser.Model/Tasks/IScheduledTask.cs
index ed160e176..bf87088e4 100644
--- a/MediaBrowser.Model/Tasks/IScheduledTask.cs
+++ b/MediaBrowser.Model/Tasks/IScheduledTask.cs
@@ -1,5 +1,3 @@
-#pragma warning disable CS1591
-
using System;
using System.Collections.Generic;
using System.Threading;
@@ -8,16 +6,19 @@ using System.Threading.Tasks;
namespace MediaBrowser.Model.Tasks
{
/// <summary>
- /// Interface IScheduledTaskWorker
+ /// Interface IScheduledTaskWorker.
/// </summary>
public interface IScheduledTask
{
/// <summary>
- /// Gets the name of the task
+ /// Gets the name of the task.
/// </summary>
/// <value>The name.</value>
string Name { get; }
+ /// <summary>
+ /// Gets the key of the task.
+ /// </summary>
string Key { get; }
/// <summary>
@@ -33,7 +34,7 @@ namespace MediaBrowser.Model.Tasks
string Category { get; }
/// <summary>
- /// Executes the task
+ /// Executes the task.
/// </summary>
/// <param name="cancellationToken">The cancellation token.</param>
/// <param name="progress">The progress.</param>