Show similar device and uploaded reports in device report details.

This commit is contained in:
2019-11-23 22:06:53 +00:00
parent 37a2ee0b37
commit ea8fe50ec7
3 changed files with 314 additions and 22 deletions

View File

@@ -0,0 +1,15 @@
using System.Collections.Generic;
namespace DiscImageChef.Server.Models
{
public class DeviceDetails
{
public Device 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 List<DeviceStat> StatsAll { get; set; }
public List<DeviceStat> StatsButManufacturer { get; set; }
}
}