From 04735cc37dc620cdd75fcb0b5ce639236658c9c8 Mon Sep 17 00:00:00 2001 From: Darth Affe Date: Sat, 3 Feb 2018 20:46:30 +0100 Subject: [PATCH] Added INotifyPropertyChanged to IDecoratable-Interface --- RGB.NET.Core/Decorators/IDecoratable.cs | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) 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 { } ///