16 lines
397 B
C#
16 lines
397 B
C#
|
|
using DTS.Common.Base;
|
|||
|
|
using DTS.Common.Interface;
|
|||
|
|
using Prism.Events;
|
|||
|
|
|
|||
|
|
namespace DTS.Common.Events
|
|||
|
|
{
|
|||
|
|
public class PSDReportSettingsChangedEvent : PubSubEvent<PSDReportSettingsChangedEventArg> { }
|
|||
|
|
|
|||
|
|
public class PSDReportSettingsChangedEventArg
|
|||
|
|
{
|
|||
|
|
public IPSDReportSettingsModel Model { get; set; }
|
|||
|
|
|
|||
|
|
public IBaseViewModel ParentVM { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|