diff options
| author | Mark Monteiro <marknr.monteiro@protonmail.com> | 2020-05-17 17:35:43 -0400 |
|---|---|---|
| committer | Mark Monteiro <marknr.monteiro@protonmail.com> | 2020-05-17 17:36:36 -0400 |
| commit | d06fee75b65def754ce58e8322a59bf8c942b82f (patch) | |
| tree | 3e8c6284dde94cd894c8125a570c32603047af1b /MediaBrowser.Controller/Providers/IExternalId.cs | |
| parent | c82f7eeca14839cd21e1904f79007c0d24c85f8f (diff) | |
Rename Name to ProviderName
Diffstat (limited to 'MediaBrowser.Controller/Providers/IExternalId.cs')
| -rw-r--r-- | MediaBrowser.Controller/Providers/IExternalId.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/MediaBrowser.Controller/Providers/IExternalId.cs b/MediaBrowser.Controller/Providers/IExternalId.cs index ae87aab9e..96d1e4622 100644 --- a/MediaBrowser.Controller/Providers/IExternalId.cs +++ b/MediaBrowser.Controller/Providers/IExternalId.cs @@ -11,7 +11,7 @@ namespace MediaBrowser.Controller.Providers /// <summary> /// Gets the display name of the provider associated with this ID type. /// </summary> - string Name { get; } + string ProviderName { get; } /// <summary> /// Gets the unique key to distinguish this provider/type pair. This should be unique across providers. @@ -24,7 +24,7 @@ namespace MediaBrowser.Controller.Providers /// external id types for providers with multiple ids. /// </summary> /// <remarks> - /// This can be used along with the <see cref="Name"/> to localize the external id on the client. + /// This can be used along with the <see cref="ProviderName"/> to localize the external id on the client. /// </remarks> ExternalIdMediaType Type { get; } |
