PluginInfo.cs 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. #nullable disable
  2. namespace MediaBrowser.Model.Plugins
  3. {
  4. /// <summary>
  5. /// This is a serializable stub class that is used by the api to provide information about installed plugins.
  6. /// </summary>
  7. public class PluginInfo
  8. {
  9. /// <summary>
  10. /// Gets or sets the name.
  11. /// </summary>
  12. /// <value>The name.</value>
  13. public string Name { get; set; }
  14. /// <summary>
  15. /// Gets or sets the version.
  16. /// </summary>
  17. /// <value>The version.</value>
  18. public string Version { get; set; }
  19. /// <summary>
  20. /// Gets or sets the name of the configuration file.
  21. /// </summary>
  22. /// <value>The name of the configuration file.</value>
  23. public string ConfigurationFileName { get; set; }
  24. /// <summary>
  25. /// Gets or sets the description.
  26. /// </summary>
  27. /// <value>The description.</value>
  28. public string Description { get; set; }
  29. /// <summary>
  30. /// Gets or sets the unique id.
  31. /// </summary>
  32. /// <value>The unique id.</value>
  33. public string Id { get; set; }
  34. /// <summary>
  35. /// Gets or sets a value indicating whether the plugin can be uninstalled.
  36. /// </summary>
  37. public bool CanUninstall { get; set; }
  38. /// <summary>
  39. /// Gets or sets the image URL.
  40. /// </summary>
  41. /// <value>The image URL.</value>
  42. public string ImageUrl { get; set; }
  43. }
  44. }