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.
jellyfin/MediaBrowser.Providers/Plugins/MusicBrainz/Configuration/PluginConfiguration.cs

17 lines
447 B

using System.Collections.Generic;
using MediaBrowser.Model.Plugins;
namespace MediaBrowser.Providers.Plugins.MusicBrainz
{
public class PluginConfiguration : BasePluginConfiguration
{
public bool Enable { get; set; } = false;
public bool ReplaceArtistName { get; set; } = false;
public string Server { get; set; } = "https://www.musicbrainz.org";
public long RateLimit { get; set; } = 1000u;
}
}