2020-02-29 21:04:02 +00:00
|
|
|
using Aaru.CommonTypes.Metadata;
|
2019-11-23 22:06:53 +00:00
|
|
|
|
2024-05-03 22:18:49 +01:00
|
|
|
namespace Aaru.Server.Database.Models;
|
2021-12-08 17:57:50 +00:00
|
|
|
|
|
|
|
|
public class DeviceDetails
|
2019-11-23 22:06:53 +00:00
|
|
|
{
|
2025-09-13 02:33:31 +01:00
|
|
|
public Device? Report { get; set; }
|
2021-12-08 17:57:50 +00:00
|
|
|
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; }
|
|
|
|
|
public List<TestedSequentialMedia> TestedSequentialMedias { get; set; }
|
2019-11-23 22:06:53 +00:00
|
|
|
}
|