Sort USB Vendors.

This commit is contained in:
2019-11-17 22:32:50 +00:00
parent 8467abadba
commit 2c6dd08004
3 changed files with 5 additions and 13 deletions

View File

@@ -32,6 +32,7 @@
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations;
using Newtonsoft.Json;
@@ -51,7 +52,9 @@ namespace DiscImageChef.Server.Models
[Key]
public int Id { get; set; }
[DisplayName("Manufacturer ID"), DisplayFormat(DataFormatString = "0x{0:X4}")]
public ushort VendorId { get; set; }
[DisplayName("Manufacturer")]
public string Vendor { get; set; }
public DateTime AddedWhen { get; set; }
public DateTime ModifiedWhen { get; set; }