diff --git a/RGB.NET.Core/Devices/IRGBDeviceInfo.cs b/RGB.NET.Core/Devices/IRGBDeviceInfo.cs
index 115d307..23dbeb2 100644
--- a/RGB.NET.Core/Devices/IRGBDeviceInfo.cs
+++ b/RGB.NET.Core/Devices/IRGBDeviceInfo.cs
@@ -24,6 +24,11 @@ namespace RGB.NET.Core
///
string Model { get; }
+ ///
+ /// Gets the lighting capability of the
+ ///
+ RGBDeviceLighting Lighting { get; }
+
///
/// Gets the URI of an image of the or null if there is no image.
///
diff --git a/RGB.NET.Core/Devices/Layout/DeviceLayout.cs b/RGB.NET.Core/Devices/Layout/DeviceLayout.cs
index 9122617..eceb38d 100644
--- a/RGB.NET.Core/Devices/Layout/DeviceLayout.cs
+++ b/RGB.NET.Core/Devices/Layout/DeviceLayout.cs
@@ -33,10 +33,10 @@ namespace RGB.NET.Core.Layout
public RGBDeviceType Type { get; set; }
///
- /// Gets or sets the of the .
+ /// Gets or sets the of the .
///
[XmlElement("Lighting")]
- public LayoutLighting Lighting { get; set; }
+ public RGBDeviceLighting Lighting { get; set; }
///
/// Gets or sets the vendor of the .
diff --git a/RGB.NET.Core/Devices/Layout/LayoutLighting.cs b/RGB.NET.Core/Devices/RGBDeviceLighting.cs
similarity index 82%
rename from RGB.NET.Core/Devices/Layout/LayoutLighting.cs
rename to RGB.NET.Core/Devices/RGBDeviceLighting.cs
index 1170d95..7aff222 100644
--- a/RGB.NET.Core/Devices/Layout/LayoutLighting.cs
+++ b/RGB.NET.Core/Devices/RGBDeviceLighting.cs
@@ -1,9 +1,11 @@
-namespace RGB.NET.Core.Layout
+using RGB.NET.Core.Layout;
+
+namespace RGB.NET.Core
{
///
/// Contains a list of different lightning-modes used by .
///
- public enum LayoutLighting
+ public enum RGBDeviceLighting
{
///
/// The supports per-key-lightning.
diff --git a/RGB.NET.Core/RGB.NET.Core.csproj b/RGB.NET.Core/RGB.NET.Core.csproj
index 4d0a1e5..4cb9e54 100644
--- a/RGB.NET.Core/RGB.NET.Core.csproj
+++ b/RGB.NET.Core/RGB.NET.Core.csproj
@@ -48,7 +48,7 @@
-
+