jellyfin/MediaBrowser.Providers/Plugins/MusicBrainz/Configuration/PluginConfiguration.cs

17 lines
429 B
C#
Raw Normal View History

2020-02-22 07:04:52 +01:00
using System.Collections.Generic;
using MediaBrowser.Model.Plugins;
namespace MediaBrowser.Providers.Plugins.MusicBrainz
{
public class PluginConfiguration : BasePluginConfiguration
{
public string Server { get; set; } = "https://www.musicbrainz.org";
public long RateLimit { get; set; } = 1000u;
2020-02-23 16:24:03 +01:00
public bool Enable { get; set; }
public bool ReplaceArtistName { get; set; }
2020-02-22 07:04:52 +01:00
}
}