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;