Link device with reports in server database.

This commit is contained in:
2018-12-22 20:46:51 +00:00
parent e7e3b6c29f
commit bbb6cff8fe
7 changed files with 193 additions and 6 deletions

View File

@@ -5,10 +5,11 @@ namespace DiscImageChef.Server.Models
public class DeviceStat
{
[Key]
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 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 virtual Device Report { get; set; }
}
}