mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-20 04:18:51 -07:00
14 lines
291 B
C#
14 lines
291 B
C#
#pragma warning disable CS1591
|
|
|
|
using MediaBrowser.Model.Plugins;
|
|
|
|
namespace MediaBrowser.Providers.Plugins.AudioDb
|
|
{
|
|
public class PluginConfiguration : BasePluginConfiguration
|
|
{
|
|
public bool Enable { get; set; }
|
|
|
|
public bool ReplaceAlbumName { get; set; }
|
|
}
|
|
}
|