Files
DP44/Common/DTS.CommonCore/Events/ISO/ExtraPropertiesChangedEvent.cs
2026-04-17 14:55:32 -04:00

23 lines
805 B
C#

using System;
using System.Collections.Generic;
using DTS.Common.Interface.ISO.ExtraProperties;
using Microsoft.Practices.Prism.Events;
namespace DTS.Common.Events.ISO
{
public class ExtraPropertiesChangedEvent : CompositePresentationEvent<ExtraPropertiesChangedEventArgs> { }
public class ExtraPropertiesChangedEventArgs
{
public IList<IExtraProperty> ExtraProperties { get; private set; }
public object Producer { get; private set; }
public object Consumer { get; private set; }
public ExtraPropertiesChangedEventArgs(IList<IExtraProperty> extraProperties, object producer, object consumer)
{
ExtraProperties = extraProperties;
Producer = producer;
Consumer = consumer;
}
}
}