17 lines
489 B
C#
17 lines
489 B
C#
|
|
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; }
|
|||
|
|
}
|
|||
|
|
}
|