Files
DP44/Common/DTS.CommonCore/.svn/pristine/40/40f5bb58eda61dec903f8c97585f35dcff2ec83e.svn-base

16 lines
444 B
Plaintext
Raw Normal View History

2026-04-17 14:55:32 -04:00
using DTS.Common.Base;
using DTS.Common.Interface;
using Microsoft.Practices.Prism.Events;
namespace DTS.Common.Events
{
public class PSDReportSettingsChangedEvent : CompositePresentationEvent<PSDReportSettingsChangedEventArg> { }
public class PSDReportSettingsChangedEventArg
{
public IPSDReportSettingsModel Model { get; set; }
public IBaseViewModel ParentVM { get; set; }
}
}