Move USB device reporting to non-static class and its UI to CLI.

This commit is contained in:
2018-11-25 18:28:57 +00:00
parent 601da83a93
commit dc4be81e35
7 changed files with 52 additions and 32 deletions

View 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;
}
}
}