diff --git a/RGB.NET.Devices.Debug/DebugRGBDevice.cs b/RGB.NET.Devices.Debug/DebugRGBDevice.cs
index 2ed6700..c63e3e8 100644
--- a/RGB.NET.Devices.Debug/DebugRGBDevice.cs
+++ b/RGB.NET.Devices.Debug/DebugRGBDevice.cs
@@ -16,6 +16,11 @@ namespace RGB.NET.Devices.Debug
///
public override DebugRGBDeviceInfo DeviceInfo { get; }
+ ///
+ /// Gets the path used to mock this
+ ///
+ public string LayoutPath { get; }
+
private Func> _syncBackFunc;
private Action> _updateLedsAction;
@@ -32,6 +37,7 @@ namespace RGB.NET.Devices.Debug
DeviceLayout layout = DeviceLayout.Load(layoutPath);
DeviceInfo = new DebugRGBDeviceInfo(layout.Type, layout.Vendor, layout.Model, layout.Lighting, syncBackFunc != null);
+ LayoutPath = layoutPath;
}
#endregion