16 lines
395 B
C#
16 lines
395 B
C#
// <copyright file="PluginConfiguration.cs" company="PlaceholderCompany">
|
|
// Copyright (c) PlaceholderCompany. All rights reserved.
|
|
// </copyright>
|
|
|
|
#pragma warning disable CS1591
|
|
|
|
using MediaBrowser.Model.Plugins;
|
|
|
|
namespace MediaBrowser.Providers.Plugins.AudioDb
|
|
{
|
|
public class PluginConfiguration : BasePluginConfiguration
|
|
{
|
|
public bool ReplaceAlbumName { get; set; }
|
|
}
|
|
}
|