diff --git a/Metadata/DeviceReportV2.cs b/Metadata/DeviceReportV2.cs index 181e5eee9..22d4f59f5 100644 --- a/Metadata/DeviceReportV2.cs +++ b/Metadata/DeviceReportV2.cs @@ -174,9 +174,11 @@ namespace DiscImageChef.CommonTypes.Metadata } [JsonIgnore] - public int Id { get; set; } - public ushort VendorID { get; set; } - public ushort ProductID { get; set; } + public int Id { get; set; } + [DisplayName("Vendor ID"), DisplayFormat(DataFormatString = "0x{0:X4}")] + public ushort VendorID { get; set; } + [DisplayName("Product ID"), DisplayFormat(DataFormatString = "0x{0:X4}")] + public ushort ProductID { get; set; } public string Manufacturer { get; set; } public string Product { get; set; } public bool RemovableMedia { get; set; }