Files
Aaru/DiscImageChef.Core/Devices/Report/DeviceReport.cs

16 lines
306 B
C#
Raw Normal View History

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