diff options
| author | dkanada <dkanada@users.noreply.github.com> | 2019-08-18 03:19:27 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-08-18 03:19:27 -0700 |
| commit | 25a590e8cd5305ea04ecea723e1b1d13a83203ac (patch) | |
| tree | 94737aba34a263a1f864293c4cc8c70999e3ca87 /Emby.IsoMounting/IsoMounter/Plugin.cs | |
| parent | 6766e04dd6d75acdd59e2612dea99bcaeb080cde (diff) | |
| parent | dc662beefeb918b6ae967acb9849a2856cfc3672 (diff) | |
Merge pull request #1636 from Bond-009/isomounter
Add analysers to Emby.IsoMounting and enable TreatWarningsAsErrors
Diffstat (limited to 'Emby.IsoMounting/IsoMounter/Plugin.cs')
| -rw-r--r-- | Emby.IsoMounting/IsoMounter/Plugin.cs | 25 |
1 files changed, 14 insertions, 11 deletions
diff --git a/Emby.IsoMounting/IsoMounter/Plugin.cs b/Emby.IsoMounting/IsoMounter/Plugin.cs index f45b39d3e..433294d74 100644 --- a/Emby.IsoMounting/IsoMounter/Plugin.cs +++ b/Emby.IsoMounting/IsoMounter/Plugin.cs @@ -6,25 +6,28 @@ using MediaBrowser.Model.Serialization; namespace IsoMounter { + /// <summary> + /// The LinuxMount plugin class. + /// </summary> public class Plugin : BasePlugin<PluginConfiguration> { - public Plugin(IApplicationPaths applicationPaths, IXmlSerializer xmlSerializer) : base(applicationPaths, xmlSerializer) + /// <summary> + /// Initializes a new instance of the <see cref="Plugin" /> class. + /// </summary> + /// <param name="applicationPaths">The application paths.</param> + /// <param name="xmlSerializer">The XML serializer.</param> + public Plugin(IApplicationPaths applicationPaths, IXmlSerializer xmlSerializer) + : base(applicationPaths, xmlSerializer) { } - private Guid _id = new Guid("4682DD4C-A675-4F1B-8E7C-79ADF137A8F8"); - public override Guid Id => _id; + /// <inheritdoc /> + public override Guid Id { get; } = new Guid("4682DD4C-A675-4F1B-8E7C-79ADF137A8F8"); - /// <summary> - /// Gets the name of the plugin - /// </summary> - /// <value>The name.</value> + /// <inheritdoc /> public override string Name => "Iso Mounter"; - /// <summary> - /// Gets the description. - /// </summary> - /// <value>The description.</value> + /// <inheritdoc /> public override string Description => "Mount and stream ISO contents"; } } |
