Plugin.cs 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. using MediaBrowser.Common.Configuration;
  2. using MediaBrowser.Common.Plugins;
  3. using MediaBrowser.Model.Serialization;
  4. using System;
  5. using IsoMounter.Configuration;
  6. namespace IsoMounter
  7. {
  8. public class Plugin : BasePlugin<PluginConfiguration>
  9. {
  10. public Plugin(IApplicationPaths applicationPaths, IXmlSerializer xmlSerializer) : base(applicationPaths, xmlSerializer)
  11. {
  12. }
  13. private Guid _id = new Guid("4682DD4C-A675-4F1B-8E7C-79ADF137A8F8");
  14. public override Guid Id
  15. {
  16. get { return _id; }
  17. }
  18. /// <summary>
  19. /// Gets the name of the plugin
  20. /// </summary>
  21. /// <value>The name.</value>
  22. public override string Name
  23. {
  24. get { return "Iso Mounter"; }
  25. }
  26. /// <summary>
  27. /// Gets the description.
  28. /// </summary>
  29. /// <value>The description.</value>
  30. public override string Description
  31. {
  32. get
  33. {
  34. return "Mount and stream ISO contents";
  35. }
  36. }
  37. }
  38. }