15 lines
377 B
Plaintext
15 lines
377 B
Plaintext
|
|
using DTS.Common.Classes;
|
||
|
|
using 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 : PubSubEvent<StatusAndProgressBarEventArgs> { }
|
||
|
|
}
|