Add database table for iNES/NES 2.0 manually written information from headers.

This commit is contained in:
2021-12-08 20:34:36 +00:00
parent 09a8b3bb5d
commit 2152a6deab
3 changed files with 48 additions and 23 deletions

View File

@@ -32,28 +32,19 @@
using System.Collections.Generic;
namespace Aaru.Dto
namespace Aaru.Dto;
/// <summary>DTO for database synchronization.</summary>
public class SyncDto
{
/// <summary>
/// DTO for database synchronization.
/// </summary>
public class SyncDto
{
/// <summary>
/// List of USB vendors
/// </summary>
public List<UsbVendorDto> UsbVendors { get; set; }
/// <summary>
/// List of USB products
/// </summary>
public List<UsbProductDto> UsbProducts { get; set; }
/// <summary>
/// List of CD read offsets
/// </summary>
public List<CdOffsetDto> Offsets { get; set; }
/// <summary>
/// List of known devices
/// </summary>
public List<DeviceDto> Devices { get; set; }
}
/// <summary>List of USB vendors</summary>
public List<UsbVendorDto> UsbVendors { get; set; }
/// <summary>List of USB products</summary>
public List<UsbProductDto> UsbProducts { get; set; }
/// <summary>List of CD read offsets</summary>
public List<CdOffsetDto> Offsets { get; set; }
/// <summary>List of known devices</summary>
public List<DeviceDto> Devices { get; set; }
/// <summary>List of known iNES/NES 2.0 headers</summary>
public List<NesHeaderDto> NesHeaders { get; set; }
}