using System.Collections.Generic;
using Core.Common.BaseDelftTools;
namespace Application.Ringtoets.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 Version { get; set; }
public string SupportEmail { get; set; }
public string SupportPhone { get; set; }
public IEnumerable Plugins { get; set; }
}
}