浏览代码

Restore comments

ferferga 5 年之前
父节点
当前提交
797b2fbf1d
共有 1 个文件被更改,包括 7 次插入7 次删除
  1. 7 7
      Emby.Server.Implementations/ScheduledTasks/Tasks/PluginUpdateTask.cs

+ 7 - 7
Emby.Server.Implementations/ScheduledTasks/Tasks/PluginUpdateTask.cs

@@ -97,19 +97,19 @@ namespace Emby.Server.Implementations.ScheduledTasks
 
             progress.Report(100);
         }
-
+        /// <inheritdoc />
         public string Name => _localization.GetLocalizedString("TaskUpdatePlugins");
-
+        /// <inheritdoc />
         public string Description => _localization.GetLocalizedString("TaskUpdatePluginsDescription");
-
+        /// <inheritdoc />
         public string Category => _localization.GetLocalizedString("TasksCategoryApplication");
-
+        /// <inheritdoc />
         public string Key => "PluginUpdates";
-
+        /// <inheritdoc />
         public bool IsHidden => false;
-
+        /// <inheritdoc />
         public bool IsEnabled => true;
-
+        /// <inheritdoc />
         public bool IsLogged => true;
     }
 }