Files
Aaru/SyncDto.cs
2020-02-27 00:36:40 +00:00

12 lines
338 B
C#

using System.Collections.Generic;
namespace Aaru.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; }
}
}