init
This commit is contained in:
22
Common/DTS.Common/Events/ISO/ExtraPropertiesChangedEvent.cs
Normal file
22
Common/DTS.Common/Events/ISO/ExtraPropertiesChangedEvent.cs
Normal file
@@ -0,0 +1,22 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using DTS.Common.Interface.ISO.ExtraProperties;
|
||||
using Prism.Events;
|
||||
|
||||
namespace DTS.Common.Events.ISO
|
||||
{
|
||||
public class ExtraPropertiesChangedEvent : PubSubEvent<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;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user