mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
16 lines
306 B
C#
16 lines
306 B
C#
|
|
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;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|