From 9b68756f5af85bc7d43674f5a02f0a76b1cfdd92 Mon Sep 17 00:00:00 2001 From: Anairkoen Schno Date: Thu, 9 Apr 2020 12:52:59 -0500 Subject: [PATCH] Added yet more fields to PluginMetadata --- IPA.Loader/Loader/PluginMetadata.cs | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/IPA.Loader/Loader/PluginMetadata.cs b/IPA.Loader/Loader/PluginMetadata.cs index b4d74afc..c5f97e5a 100644 --- a/IPA.Loader/Loader/PluginMetadata.cs +++ b/IPA.Loader/Loader/PluginMetadata.cs @@ -49,6 +49,12 @@ namespace IPA.Loader /// the name of the plugin's author public string Author { get; private set; } + /// + /// The description of this plugin. + /// + /// the description of the plugin + public string Description { get; private set; } + /// /// The version of the plugin. /// @@ -120,6 +126,7 @@ namespace IPA.Loader Name = value.Name; Version = value.Version; Id = value.Id; + Description = value.Description; Author = value.Author; IconName = value.IconPath; PluginHomeLink = value.Links.ProjectHome;