mirror of
https://github.com/aaru-dps/Aaru.Server.git
synced 2025-12-16 11:14:27 +00:00
15 lines
369 B
C#
15 lines
369 B
C#
namespace Aaru.Server.Database.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; }
|
|
} |