diff --git a/src/PepperDash.Essentials.Devices.Common/DSP/DspBase.cs b/src/PepperDash.Essentials.Devices.Common/DSP/DspBase.cs index e20abc9c..051f3b1a 100644 --- a/src/PepperDash.Essentials.Devices.Common/DSP/DspBase.cs +++ b/src/PepperDash.Essentials.Devices.Common/DSP/DspBase.cs @@ -61,13 +61,18 @@ namespace PepperDash.Essentials.Devices.Common.DSP /// /// Base class for DSP control points /// - public abstract class DspControlPoint : IKeyed + public abstract class DspControlPoint : IKeyName { /// /// Gets or sets the Key /// public string Key { get; } + /// + /// Gets or sets the Name + /// + public string Name { get; private set; } + /// /// Initializes a new instance of the DspControlPoint class ///