using MediaBrowser.Common.Configuration; using MediaBrowser.Common.Plugins; using MediaBrowser.Model.Serialization; using System; using IsoMounter.Configuration; namespace IsoMounter { public class Plugin : BasePlugin { public Plugin(IApplicationPaths applicationPaths, IXmlSerializer xmlSerializer) : base(applicationPaths, xmlSerializer) { } private Guid _id = new Guid("4682DD4C-A675-4F1B-8E7C-79ADF137A8F8"); public override Guid Id { get { return _id; } } /// /// Gets the name of the plugin /// /// The name. public override string Name { get { return "Iso Mounter"; } } /// /// Gets the description. /// /// The description. public override string Description { get { return "Mount and stream ISO contents"; } } } }