Files
DP44/Common/DTS.Common/Events/DTS.Viewer/Reports/PowerSpectralDensity/PSDReportSettingsChangedEvent.cs
2026-04-17 14:55:32 -04:00

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; }
}
}