mirror of
https://github.com/danieladov/jellyfin-plugin-skin-manager.git
synced 2026-01-18 16:37:31 +01:00
21 lines
559 B
C#
21 lines
559 B
C#
using MediaBrowser.Model.Plugins;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Jellyfin.Plugin.SkinManager.Configuration
|
|
{
|
|
public class PluginConfiguration : BasePluginConfiguration
|
|
{
|
|
public string selectedSkin { get; set; }
|
|
public string[] skinHistory { get; set; }
|
|
public string[] userCssHistory { get; set; }
|
|
|
|
public PluginConfiguration()
|
|
{
|
|
selectedSkin = "";
|
|
skinHistory = Array.Empty<String>();
|
|
userCssHistory = Array.Empty<String>();
|
|
}
|
|
}
|
|
}
|