mirror of
https://github.com/DarthAffe/KeyboardAudioVisualizer.git
synced 2025-12-13 07:38:44 +00:00
11 lines
213 B
C#
11 lines
213 B
C#
using System.ComponentModel;
|
|
using RGB.NET.Core;
|
|
|
|
namespace KeyboardAudioVisualizer.Configuration
|
|
{
|
|
public interface IConfiguration : INotifyPropertyChanged
|
|
{
|
|
IBrush Brush { get; set; }
|
|
}
|
|
}
|