using System.Collections.Generic; namespace DiscImageChef.Server.Models { public class UploadedReportDetails { public UploadedReport Report { get; set; } public List SameAll { get; set; } public List SameButManufacturer { get; set; } public List ReportAll { get; set; } public List ReportButManufacturer { get; set; } public int ReadCapabilitiesId { get; set; } } }