Files
DP44/Common/DTS.Common/Events/BusyIndicatorChangeNotification.cs
2026-04-17 14:55:32 -04:00

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> { }
}