1
0
mirror of https://github.com/DarthAffe/RGB.NET.git synced 2025-12-12 17:48: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>
/// Represents a basic decoratable.
/// </summary>
public interface IDecoratable
public interface IDecoratable : INotifyPropertyChanged
{ }
/// <inheritdoc />