diff --git a/RGB.NET.Core/Decorators/IDecoratable.cs b/RGB.NET.Core/Decorators/IDecoratable.cs index 1930942..9e2a32c 100644 --- a/RGB.NET.Core/Decorators/IDecoratable.cs +++ b/RGB.NET.Core/Decorators/IDecoratable.cs @@ -1,9 +1,11 @@ -namespace RGB.NET.Core +using System.ComponentModel; + +namespace RGB.NET.Core { /// /// Represents a basic decoratable. /// - public interface IDecoratable + public interface IDecoratable : INotifyPropertyChanged { } ///