using System.ComponentModel; namespace RGB.NET.Core { /// /// Represents a basic bindable class which notifies when a property value changes. /// public interface IBindable : INotifyPropertyChanged { } }