using System.Collections.Generic;
using DelftTools.Shell.Core;
namespace DeltaShell.Gui.Forms
{
///
/// Data displayed in AboutBox
///
public class HelpAboutBoxData
{
public HelpAboutBoxData()
{
Plugins = new List();
}
public string ProductName { get; set; }
public string Copyright { get; set; }
public string Description { get; set; }
public string Version { get; set; }
public string SupportEmail { get; set; }
public string SupportPhone { get; set; }
public IEnumerable Plugins { get; set; }
}
}