mirror of
https://github.com/aaru-dps/Aaru.Server.git
synced 2025-12-16 19:24:27 +00:00
Implement searching reports from device stats.
This commit is contained in:
14
DiscImageChef.Server/Models/FindReportModel.cs
Normal file
14
DiscImageChef.Server/Models/FindReportModel.cs
Normal 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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user