Castle.Components.DictionaryAdapter.PropertyChangedEventArgsEx
namespace Castle.Components.DictionaryAdapter
{
public class PropertyChangedEventArgsEx : PropertyChangedEventArgs
{
public object OldValue { get; }
public object NewValue { get; }
public PropertyChangedEventArgsEx(string propertyName, object oldValue, object newValue);
}
}