Merge pull request #3244 from jellyfin/custom-repos

Initial implementation for custom plugin repositories
This commit is contained in:
dkanada
2020-06-22 22:08:43 +09:00
committed by GitHub
10 changed files with 128 additions and 35 deletions

View File

@@ -2,7 +2,9 @@
#pragma warning disable CS1591
using System;
using System.Collections.Generic;
using MediaBrowser.Model.Dto;
using MediaBrowser.Model.Updates;
namespace MediaBrowser.Model.Configuration
{
@@ -229,6 +231,8 @@ namespace MediaBrowser.Model.Configuration
public string[] CodecsUsed { get; set; }
public List<RepositoryInfo> PluginRepositories { get; set; }
public bool IgnoreVirtualInterfaces { get; set; }
public bool EnableExternalContentInSuggestions { get; set; }