diff options
| author | Bond-009 <bond.009@outlook.com> | 2021-03-14 00:41:40 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-03-14 00:41:40 +0100 |
| commit | 0e5d4a3bcfaa07c3cd1c0085a5940b1c13f1ae20 (patch) | |
| tree | ff6018170854d520370903cfc0b6bb56afe362cd /MediaBrowser.Common/Plugins/LocalPlugin.cs | |
| parent | 5c0c205bedb504d7123c2509a6dcb689ffc1f7e6 (diff) | |
| parent | 01dfa8801a74f8c6802aea33d9bce0e421601faa (diff) | |
Merge pull request #5422 from Bond-009/warn51
Diffstat (limited to 'MediaBrowser.Common/Plugins/LocalPlugin.cs')
| -rw-r--r-- | MediaBrowser.Common/Plugins/LocalPlugin.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/MediaBrowser.Common/Plugins/LocalPlugin.cs b/MediaBrowser.Common/Plugins/LocalPlugin.cs index 23b6cfa81..12a1ad1ec 100644 --- a/MediaBrowser.Common/Plugins/LocalPlugin.cs +++ b/MediaBrowser.Common/Plugins/LocalPlugin.cs @@ -22,7 +22,7 @@ namespace MediaBrowser.Common.Plugins public LocalPlugin(string path, bool isSupported, PluginManifest manifest) { Path = path; - DllFiles = new List<string>(); + DllFiles = Array.Empty<string>(); _supported = isSupported; Manifest = manifest; } @@ -59,9 +59,9 @@ namespace MediaBrowser.Common.Plugins public string Path { get; } /// <summary> - /// Gets the list of dll files for this plugin. + /// Gets or sets the list of dll files for this plugin. /// </summary> - public List<string> DllFiles { get; } + public IReadOnlyList<string> DllFiles { get; set; } /// <summary> /// Gets or sets the instance of this plugin. |
