17 lines
450 B
C#
17 lines
450 B
C#
|
|
using DTS.Common.Base;
|
|||
|
|
using Prism.Events;
|
|||
|
|
|
|||
|
|
namespace DTS.Common.Events
|
|||
|
|
{
|
|||
|
|
public class GraphChannelReadCalcProgressChangedEvent : PubSubEvent<GraphChannelReadCalcProgressChangedEventArgs> { }
|
|||
|
|
|
|||
|
|
public class GraphChannelReadCalcProgressChangedEventArgs
|
|||
|
|
{
|
|||
|
|
public string ProgressMessage { get; set; }
|
|||
|
|
|
|||
|
|
public double ProgressPercent { get; set; }
|
|||
|
|
|
|||
|
|
public IBaseViewModel GraphVM { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|