22 lines
542 B
Plaintext
22 lines
542 B
Plaintext
|
|
using DTS.Common.Base;
|
||
|
|
using DTS.Common.Interface;
|
||
|
|
using Prism.Events;
|
||
|
|
// ReSharper disable CheckNamespace
|
||
|
|
|
||
|
|
namespace DTS.Common.Events
|
||
|
|
{
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// The Data Folder changed event.
|
||
|
|
/// </summary>
|
||
|
|
public class ChartOptionsChangedEvent : PubSubEvent<ChartOptionsChangedEventArg> { }
|
||
|
|
|
||
|
|
public class ChartOptionsChangedEventArg
|
||
|
|
{
|
||
|
|
public IBaseViewModel ParentVM { get; set; }
|
||
|
|
public IChartOptionsModel Model { get; set; }
|
||
|
|
public string ChartType { get; set; }
|
||
|
|
|
||
|
|
}
|
||
|
|
}
|