mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-06-30 11:22:53 +01:00
Made BaseJsonHandler strongly typed. Moved DTO entities to their own DTO namespace in Model.
This commit is contained in:
parent
8a2e0badae
commit
5c094afd7e
@@ -2,12 +2,13 @@
|
||||
using System.Linq;
|
||||
using MediaBrowser.Common.Net.Handlers;
|
||||
using MediaBrowser.Controller;
|
||||
using MediaBrowser.Model.Plugins;
|
||||
|
||||
namespace MediaBrowser.Api.HttpHandlers
|
||||
{
|
||||
public class PluginConfigurationHandler : BaseJsonHandler
|
||||
public class PluginConfigurationHandler : BaseJsonHandler<BasePluginConfiguration>
|
||||
{
|
||||
protected override object GetObjectToSerialize()
|
||||
protected override BasePluginConfiguration GetObjectToSerialize()
|
||||
{
|
||||
string pluginName = QueryString["name"];
|
||||
|
||||
|
||||
Reference in New Issue
Block a user