15 lines
412 B
C#
15 lines
412 B
C#
using DTS.Common.Classes;
|
|
using Microsoft.Practices.Prism.Events;
|
|
|
|
namespace DTS.Common.Events
|
|
{
|
|
|
|
/// <summary>
|
|
/// The StatusAndProgressBarEvent event.
|
|
/// </summary>
|
|
///
|
|
/// <remarks>This event is used to update the Status and/or Progress bars.</remarks>
|
|
///
|
|
public class StatusAndProgressBarEvent : CompositePresentationEvent<StatusAndProgressBarEventArgs> { }
|
|
}
|