diff --git a/src/PepperDash.Core/Device.cs b/src/PepperDash.Core/Device.cs
index e1e9c066..709c712e 100644
--- a/src/PepperDash.Core/Device.cs
+++ b/src/PepperDash.Core/Device.cs
@@ -24,16 +24,6 @@ public class Device : IKeyName
///
public bool Enabled { get; protected set; }
- ///
- /// A place to store reference to the original config object, if any. These values should
- /// NOT be used as properties on the device as they are all publicly-settable values.
- ///
- //public DeviceConfig Config { get; private set; }
- ///
- /// Helper method to check if Config exists
- ///
- //public bool HasConfig { get { return Config != null; } }
-
List _PreActivationActions;
List _PostActivationActions;
diff --git a/src/PepperDash.Essentials.Core/Devices/EssentialsDevice.cs b/src/PepperDash.Essentials.Core/Devices/EssentialsDevice.cs
index 7a62d1c3..81cd0439 100644
--- a/src/PepperDash.Essentials.Core/Devices/EssentialsDevice.cs
+++ b/src/PepperDash.Essentials.Core/Devices/EssentialsDevice.cs
@@ -15,6 +15,7 @@ namespace PepperDash.Essentials.Core;
[Description("The base Essentials Device Class")]
public abstract class EssentialsDevice : Device
{
+
///
/// Event that fires when the device has completed initialization. This is useful for any setup that needs to occur after all devices have been activated.
///