mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-06-14 11:40:42 +01:00
Add DLL whitelist support for plugins
This commit is contained in:
@@ -1,3 +1,5 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text.Json.Serialization;
|
||||
using SysVersion = System.Version;
|
||||
|
||||
@@ -73,5 +75,11 @@ namespace MediaBrowser.Model.Updates
|
||||
/// </summary>
|
||||
[JsonPropertyName("repositoryUrl")]
|
||||
public string RepositoryUrl { get; set; } = string.Empty;
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the assemblies whitelist for this version.
|
||||
/// </summary>
|
||||
[JsonPropertyName("assemblies")]
|
||||
public IList<string> Assemblies { get; set; } = Array.Empty<string>();
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user