using System.ComponentModel; // ReSharper disable CheckNamespace namespace DTS.Common.Base { public interface IBasePropertyChanged : INotifyPropertyChanged { //void OnPropertyChanged(string propertyName = null); //bool SetProperty(ref T storage, T value, String propertyName = null); void OnPropertyChanged(string propertyName); } }