2019-11-17 22:47:41 +00:00
|
|
|
using System.ComponentModel;
|
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
|
|
2024-05-03 22:18:49 +01:00
|
|
|
namespace Aaru.Server.Database.Models;
|
2021-12-08 17:57:50 +00:00
|
|
|
|
|
|
|
|
public class UsbVendorModel
|
2019-11-17 22:47:41 +00:00
|
|
|
{
|
2021-12-08 17:57:50 +00:00
|
|
|
[DisplayName("Manufacturer")]
|
|
|
|
|
public string Vendor { get; set; }
|
2023-10-04 00:09:19 +01:00
|
|
|
|
|
|
|
|
[DisplayName("Vendor ID")]
|
|
|
|
|
[DisplayFormat(DataFormatString = "0x{0:X4}")]
|
|
|
|
|
public ushort VendorId { get; set; }
|
|
|
|
|
|
2021-12-08 17:57:50 +00:00
|
|
|
public List<UsbProductModel> Products { get; set; }
|
2019-11-17 22:47:41 +00:00
|
|
|
}
|