Add option to consolidate USB devices.

This commit is contained in:
2019-11-17 23:32:57 +00:00
parent 4302a291f8
commit 6c49a7b407
5 changed files with 162 additions and 1 deletions

View File

@@ -0,0 +1,18 @@
using System.Collections.Generic;
namespace DiscImageChef.Server.Models
{
public class UsbModel
{
public string Manufacturer { get; set; }
public string Product { get; set; }
public ushort VendorID { get; set; }
public ushort ProductID { get; set; }
}
public class UsbModelForView
{
public List<UsbModel> List { get; set; }
public string Json { get; set; }
}
}