PluginInfo.cs 1.3 KB

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