Add whitespaces

This commit is contained in:
ferferga 2020-03-27 16:49:01 +01:00
parent 797b2fbf1d
commit aa98160d70

View file

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