aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Common/Updates/IInstallationManager.cs
diff options
context:
space:
mode:
authorGreenback <jimcartlidge@yahoo.co.uk>2020-12-18 21:11:29 +0000
committerGreenback <jimcartlidge@yahoo.co.uk>2020-12-18 21:11:29 +0000
commitcb793af30e5785f2063e98802cfa65917cde0a46 (patch)
tree17985d00f0f497c8a6b4c829cbd68dedd838cb1b /MediaBrowser.Common/Updates/IInstallationManager.cs
parent46a64deb66a01ad95481147de977796e01e73329 (diff)
Renamed guid to id
Diffstat (limited to 'MediaBrowser.Common/Updates/IInstallationManager.cs')
-rw-r--r--MediaBrowser.Common/Updates/IInstallationManager.cs8
1 files changed, 4 insertions, 4 deletions
diff --git a/MediaBrowser.Common/Updates/IInstallationManager.cs b/MediaBrowser.Common/Updates/IInstallationManager.cs
index dd9e0cc3f..4c8a6e959 100644
--- a/MediaBrowser.Common/Updates/IInstallationManager.cs
+++ b/MediaBrowser.Common/Updates/IInstallationManager.cs
@@ -41,14 +41,14 @@ namespace MediaBrowser.Common.Updates
/// </summary>
/// <param name="availablePackages">The available packages.</param>
/// <param name="name">The name of the plugin.</param>
- /// <param name="guid">The id of the plugin.</param>
+ /// <param name="id">The id of the plugin.</param>
/// <param name="specificVersion">The version of the plugin.</param>
/// <returns>All plugins matching the requirements.</returns>
IEnumerable<PackageInfo> FilterPackages(
IEnumerable<PackageInfo> availablePackages,
string? name = null,
#pragma warning disable CA1720 // Identifier contains type name
- Guid? guid = default,
+ Guid? id = default,
#pragma warning restore CA1720 // Identifier contains type name
Version? specificVersion = null);
@@ -57,7 +57,7 @@ namespace MediaBrowser.Common.Updates
/// </summary>
/// <param name="availablePackages">The available packages.</param>
/// <param name="name">The name.</param>
- /// <param name="guid">The guid of the plugin.</param>
+ /// <param name="id">The id of the plugin.</param>
/// <param name="minVersion">The minimum required version of the plugin.</param>
/// <param name="specificVersion">The specific version of the plugin to install.</param>
/// <returns>All compatible versions ordered from newest to oldest.</returns>
@@ -65,7 +65,7 @@ namespace MediaBrowser.Common.Updates
IEnumerable<PackageInfo> availablePackages,
string? name = null,
#pragma warning disable CA1720 // Identifier contains type name
- Guid? guid = default,
+ Guid? id = default,
#pragma warning restore CA1720 // Identifier contains type name
Version? minVersion = null,
Version? specificVersion = null);