Add update endpoint.

This commit is contained in:
2019-01-01 16:43:34 +00:00
parent a95a1f71e0
commit 6fdcd6abcf
17 changed files with 628 additions and 1 deletions

View File

@@ -42,6 +42,7 @@ namespace DiscImageChef.Database.Models
public UsbProduct(ushort vendorId, ushort id, string product)
{
VendorId = vendorId;
ProductId = id;
Product = product;
AddedWhen = ModifiedWhen = DateTime.UtcNow;