mirror of
https://github.com/aaru-dps/Aaru.Server.git
synced 2025-12-16 19:24:27 +00:00
Add option to consolidate USB devices.
This commit is contained in:
18
DiscImageChef.Server/Models/UsbModel.cs
Normal file
18
DiscImageChef.Server/Models/UsbModel.cs
Normal 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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user