Files
DP44/Common/DTS.CommonCore/.svn/pristine/41/415e8b554eda622d4586121d7daf4116c3b1a327.svn-base
2026-04-17 14:55:32 -04:00

17 lines
489 B
Plaintext

using DTS.Common.Base;
using Microsoft.Practices.Prism.Events;
namespace DTS.Common.Events
{
public class GraphChannelReadCalcProgressChangedEvent : CompositePresentationEvent<GraphChannelReadCalcProgressChangedEventArgs> { }
public class GraphChannelReadCalcProgressChangedEventArgs
{
public string ProgressMessage { get; set; }
public double ProgressPercent { get; set; }
public IBaseViewModel GraphVM { get; set; }
}
}