mirror of
https://github.com/aaru-dps/Aaru.Server.git
synced 2025-12-16 19:24:27 +00:00
13 lines
457 B
C#
13 lines
457 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; }
|
||
|
|
}
|
||
|
|
}
|