diff options
| author | Joshua M. Boniface <joshua@boniface.me> | 2021-02-22 21:00:15 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-02-22 21:00:15 -0500 |
| commit | da55462d92f645d20f63eab3d7ffc8e141497ac5 (patch) | |
| tree | f839d6f689308be9b74b4f53f01df70f984c9b06 /Jellyfin.Api/Models | |
| parent | 1442a63556e87f1318ff091df81c4ffa083de699 (diff) | |
| parent | baadc48f43ec425659d0d7210f1a97416d7d34c5 (diff) | |
Merge pull request #5291 from Bond-009/tests12
Diffstat (limited to 'Jellyfin.Api/Models')
| -rw-r--r-- | Jellyfin.Api/Models/ConfigurationPageInfo.cs | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/Jellyfin.Api/Models/ConfigurationPageInfo.cs b/Jellyfin.Api/Models/ConfigurationPageInfo.cs index a7bbe42fe..ec4a0d1a1 100644 --- a/Jellyfin.Api/Models/ConfigurationPageInfo.cs +++ b/Jellyfin.Api/Models/ConfigurationPageInfo.cs @@ -1,6 +1,5 @@ using System; using MediaBrowser.Common.Plugins; -using MediaBrowser.Controller.Plugins; using MediaBrowser.Model.Plugins; namespace Jellyfin.Api.Models @@ -26,6 +25,14 @@ namespace Jellyfin.Api.Models } /// <summary> + /// Initializes a new instance of the <see cref="ConfigurationPageInfo"/> class. + /// </summary> + public ConfigurationPageInfo() + { + Name = string.Empty; + } + + /// <summary> /// Gets or sets the name. /// </summary> /// <value>The name.</value> |
