Show similar device and uploaded reports in uploaded report details.

This commit is contained in:
2019-11-23 19:24:03 +00:00
parent 9d96795ab1
commit 37a2ee0b37
3 changed files with 178 additions and 19 deletions

View File

@@ -0,0 +1,13 @@
using System.Collections.Generic;
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; }
}
}