mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
Move USB device reporting to non-static class and its UI to CLI.
This commit is contained in:
16
DiscImageChef.Core/Devices/Report/DeviceReport.cs
Normal file
16
DiscImageChef.Core/Devices/Report/DeviceReport.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
using DiscImageChef.Devices;
|
||||
|
||||
namespace DiscImageChef.Core.Devices.Report
|
||||
{
|
||||
public partial class DeviceReport
|
||||
{
|
||||
Device dev;
|
||||
bool debug;
|
||||
|
||||
public DeviceReport(Device device, bool debug)
|
||||
{
|
||||
this.dev = device;
|
||||
this.debug = debug;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user