Use device report version 2 for the database.

This commit is contained in:
2018-11-26 23:16:54 +00:00
parent 9a746909d7
commit ad5c633180
46 changed files with 1718 additions and 4685 deletions

View File

@@ -0,0 +1,11 @@
using System;
using DiscImageChef.CommonTypes.Metadata;
namespace DiscImageChef.Database.Models
{
public class Report : DeviceReportV2
{
public DateTime Created { get; set; }
public bool Uploaded { get; set; }
}
}