Show tested sequential media in uploaded report details.

This commit is contained in:
2019-11-24 00:06:41 +00:00
parent ac215fedc0
commit 2cbc92e118
3 changed files with 54 additions and 7 deletions

View File

@@ -5,12 +5,13 @@ namespace DiscImageChef.Server.Models
{
public class UploadedReportDetails
{
public UploadedReport Report { get; set; }
public List<int> SameAll { get; set; }
public List<int> SameButManufacturer { get; set; }
public List<int> ReportAll { get; set; }
public List<int> ReportButManufacturer { get; set; }
public int ReadCapabilitiesId { get; set; }
public List<TestedMedia> TestedMedias { get; set; }
public UploadedReport Report { get; set; }
public List<int> SameAll { get; set; }
public List<int> SameButManufacturer { get; set; }
public List<int> ReportAll { get; set; }
public List<int> ReportButManufacturer { get; set; }
public int ReadCapabilitiesId { get; set; }
public List<TestedMedia> TestedMedias { get; set; }
public List<TestedSequentialMedia> TestedSequentialMedias { get; set; }
}
}