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

@@ -0,0 +1,13 @@
using System.Collections.Generic;
using DiscImageChef.Server.Models;
namespace DiscImageChef.Dto
{
public class SyncDto
{
public List<UsbVendorDto> UsbVendors { get; set; }
public List<UsbProductDto> UsbProducts { get; set; }
public List<CdOffsetDto> Offsets { get; set; }
public List<DeviceDto> Devices { get; set; }
}
}