Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
02/16/10 18:36:45 (14 years ago)
Author:
gkronber
Message:

Added contact info and license text to plugin descriptions. #860

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.PluginInfrastructure/Manager/PluginDescription.cs

    r2790 r2815  
    7575    /// Gets or sets the name of the contact person for this plugin.
    7676    /// </summary>
    77     internal string ContactName {
     77    public string ContactName {
    7878      get { return contactName; }
    79       set { contactName = value; }
     79      internal set { contactName = value; }
    8080    }
    8181
     
    8484    /// Gets or sets the e-mail address of the contact person for this plugin.
    8585    /// </summary>
    86     internal string ContactEmail {
     86    public string ContactEmail {
    8787      get { return contactEmail; }
    88       set { contactEmail = value; }
     88      internal set { contactEmail = value; }
     89    }
     90    private string licenseText;
     91    /// <summary>
     92    /// Gets or sets the license text of the plugin.
     93    /// </summary>
     94    public string LicenseText {
     95      get { return licenseText; }
     96      internal set { licenseText = value; }
    8997    }
    9098
Note: See TracChangeset for help on using the changeset viewer.