14 lines
337 B
C#
14 lines
337 B
C#
using DTS.Common.Base;
|
|
using Prism.Events;
|
|
|
|
namespace DTS.Common.Events
|
|
{
|
|
/// <summary>
|
|
/// The BusyIndicator changed event.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// The Busy Indicator changed event is used to ...
|
|
/// </remarks>
|
|
public class BusyIndicatorChangeNotification : PubSubEvent<bool> { }
|
|
}
|