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

15 lines
377 B
C#

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