PluginConfiguration.cs 429 B

12345678910111213141516
  1. using System.Collections.Generic;
  2. using MediaBrowser.Model.Plugins;
  3. namespace MediaBrowser.Providers.Plugins.MusicBrainz
  4. {
  5. public class PluginConfiguration : BasePluginConfiguration
  6. {
  7. public string Server { get; set; } = "https://www.musicbrainz.org";
  8. public long RateLimit { get; set; } = 1000u;
  9. public bool Enable { get; set; }
  10. public bool ReplaceArtistName { get; set; }
  11. }
  12. }