You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
51 lines
1.1 KiB
51 lines
1.1 KiB
#pragma warning disable CS1591
|
|
|
|
using MediaBrowser.Model.Plugins;
|
|
|
|
namespace MediaBrowser.Providers.Plugins.MusicBrainz
|
|
{
|
|
public class PluginConfiguration : BasePluginConfiguration
|
|
{
|
|
private string _server = Plugin.DefaultServer;
|
|
|
|
private long _rateLimit = Plugin.DefaultRateLimit;
|
|
|
|
public string Server
|
|
{
|
|
get
|
|
{
|
|
return _server;
|
|
}
|
|
|
|
set
|
|
{
|
|
_server = value.TrimEnd('/');
|
|
}
|
|
}
|
|
|
|
public long RateLimit
|
|
{
|
|
get
|
|
{
|
|
return _rateLimit;
|
|
}
|
|
|
|
set
|
|
{
|
|
if (value < Plugin.DefaultRateLimit && _server == Plugin.DefaultServer)
|
|
{
|
|
_rateLimit = Plugin.DefaultRateLimit;
|
|
}
|
|
else
|
|
{
|
|
_rateLimit = value;
|
|
}
|
|
}
|
|
}
|
|
|
|
public bool Enable { get; set; }
|
|
|
|
public bool ReplaceArtistName { get; set; }
|
|
}
|
|
}
|