Browse Source

Added yet more fields to PluginMetadata

pull/46/head
Anairkoen Schno 4 years ago
parent
commit
9b68756f5a
1 changed files with 7 additions and 0 deletions
  1. +7
    -0
      IPA.Loader/Loader/PluginMetadata.cs

+ 7
- 0
IPA.Loader/Loader/PluginMetadata.cs View File

@ -49,6 +49,12 @@ namespace IPA.Loader
/// <value>the name of the plugin's author</value>
public string Author { get; private set; }
/// <summary>
/// The description of this plugin.
/// </summary>
/// <value>the description of the plugin</value>
public string Description { get; private set; }
/// <summary>
/// The version of the plugin.
/// </summary>
@ -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;


Loading…
Cancel
Save