using System.Collections.Generic;
using System.Reflection;
using Prism.Events;
// ReSharper disable ClassNeverInstantiated.Global
namespace DTS.Common.Events
{
///
/// The event.
///
///
/// The event is used to display the notification content such as message and icon.
///
public class AssemblyListNotification : PubSubEvent { }
public class AssemblyListNotificationViewer : PubSubEvent { }
public class AssemblyListInfo : EventBase
{
public AssemblyListInfo()
{
}
public AssemblyListInfo(List assemblyList)
{
AssemblyList = assemblyList;
}
public List AssemblyList { get; set; }
}
}