Migrate server from ASP.NET Webforms to MVC.

This commit is contained in:
2018-12-27 23:34:14 +00:00
parent 91b76a11d8
commit 0acb82b808
32 changed files with 2570 additions and 1707 deletions

View File

@@ -0,0 +1,11 @@
namespace DiscImageChef.Server.Models
{
public class DeviceItem
{
public string Manufacturer { get; set; }
public string Model { get; set; }
public string Revision { get; set; }
public string Bus { get; set; }
public int ReportId { get; set; }
}
}