1
0
mirror of https://github.com/DarthAffe/RGB.NET.git synced 2025-12-13 10:08:31 +00:00

Added INotifyPropertyChanged to IDecoratable-Interface

This commit is contained in:
Darth Affe 2018-02-03 20:46:30 +01:00
parent 575461ec5e
commit 04735cc37d

View File

@ -1,9 +1,11 @@
namespace RGB.NET.Core using System.ComponentModel;
namespace RGB.NET.Core
{ {
/// <summary> /// <summary>
/// Represents a basic decoratable. /// Represents a basic decoratable.
/// </summary> /// </summary>
public interface IDecoratable public interface IDecoratable : INotifyPropertyChanged
{ } { }
/// <inheritdoc /> /// <inheritdoc />