Files
Aaru.Server/DiscImageChef.Server/Models/UploadedReportDetails.cs

14 lines
523 B
C#

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; }
public int ReadCapabilitiesId { get; set; }
}
}