aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Providers/Plugins/AudioDb/Configuration/PluginConfiguration.cs
blob: 9657a290fc163ce7b91581ca515cc1eb030ad1e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#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; }
    }
}