diff --git a/CUE.NET.csproj b/CUE.NET.csproj
index d0d8a00..bb48f86 100644
--- a/CUE.NET.csproj
+++ b/CUE.NET.csproj
@@ -51,6 +51,7 @@
+
diff --git a/Devices/Generic/PositionedCorsairLed.cs b/Devices/Generic/PositionedCorsairLed.cs
deleted file mode 100644
index a3e1077..0000000
--- a/Devices/Generic/PositionedCorsairLed.cs
+++ /dev/null
@@ -1,29 +0,0 @@
-// ReSharper disable MemberCanBePrivate.Global
-// ReSharper disable UnusedAutoPropertyAccessor.Global
-// ReSharper disable AutoPropertyCanBeMadeGetOnly.Global
-
-using System.Drawing;
-
-namespace CUE.NET.Devices.Generic
-{
- public class PositionedCorsairLed : CorsairLed
- {
- #region Properties & Fields
-
- ///
- /// Gets a rectangle representing the physical location of the led.
- ///
- public RectangleF LedRectangle { get; }
-
- #endregion
-
- #region Constructors
-
- internal PositionedCorsairLed(RectangleF ledRectangle)
- {
- this.LedRectangle = ledRectangle;
- }
-
- #endregion
- }
-}