mirror of
https://github.com/aaru-dps/Aaru.Server.git
synced 2025-12-16 11:14:27 +00:00
16 lines
400 B
C#
16 lines
400 B
C#
using System.ComponentModel;
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace Aaru.Server.Database.Models;
|
|
|
|
public class UsbVendorModel
|
|
{
|
|
[DisplayName("Manufacturer")]
|
|
public string Vendor { get; set; }
|
|
|
|
[DisplayName("Vendor ID")]
|
|
[DisplayFormat(DataFormatString = "0x{0:X4}")]
|
|
public ushort VendorId { get; set; }
|
|
|
|
public List<UsbProductModel> Products { get; set; }
|
|
} |