2019-11-23 22:06:53 +00:00
|
|
|
using System.Collections.Generic;
|
2019-11-23 23:51:09 +00:00
|
|
|
using DiscImageChef.CommonTypes.Metadata;
|
2019-11-23 22:06:53 +00:00
|
|
|
|
|
|
|
|
namespace DiscImageChef.Server.Models
|
|
|
|
|
{
|
|
|
|
|
public class DeviceDetails
|
|
|
|
|
{
|
2019-11-23 23:51:09 +00:00
|
|
|
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; }
|
|
|
|
|
public int ReadCapabilitiesId { get; set; }
|
|
|
|
|
public List<TestedMedia> TestedMedias { get; set; }
|
2019-11-23 22:06:53 +00:00
|
|
|
}
|
|
|
|
|
}
|