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