Implement searching reports from device stats.

This commit is contained in:
2019-11-24 03:08:09 +00:00
parent 2074ad489a
commit ad0ce6344f
5 changed files with 146 additions and 5 deletions

View File

@@ -0,0 +1,14 @@
using System.Collections.Generic;
namespace DiscImageChef.Server.Models
{
public class FindReportModel
{
public int Id { get; set; }
public string Manufacturer { get; set; }
public string Model { get; set; }
public string Revision { get; set; }
public string Bus { get; set; }
public List<Device> LikeDevices { get; set; }
}
}