Files
Aaru/SyncDto.cs

12 lines
338 B
C#
Raw Normal View History

2019-01-01 16:43:34 +00:00
using System.Collections.Generic;
2020-02-27 00:33:25 +00:00
namespace Aaru.Dto
2019-01-01 16:43:34 +00:00
{
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; }
}
}