init
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
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;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user