Files
Aaru.Server/DiscImageChef.Server/Models/FindReportModel.cs

13 lines
413 B
C#
Raw Normal View History

using System.Collections.Generic;
namespace DiscImageChef.Server.Models
{
2019-12-03 21:08:14 +00:00
public class FindReportModel : BaseModel<int>
{
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; }
}
}