using System.Collections.Generic; namespace DiscImageChef.Server.Models { public class DeviceDetails { public Device Report { get; set; } public List SameAll { get; set; } public List SameButManufacturer { get; set; } public List ReportAll { get; set; } public List ReportButManufacturer { get; set; } public List StatsAll { get; set; } public List StatsButManufacturer { get; set; } } }