mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
Add update endpoint.
This commit is contained in:
13
DiscImageChef.Dto/SyncDto.cs
Normal file
13
DiscImageChef.Dto/SyncDto.cs
Normal 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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user