Move database context, migrations and models to separate project.

This commit is contained in:
2024-05-03 22:18:49 +01:00
parent 16d72acb6a
commit 7bcaf5b1b0
163 changed files with 415 additions and 311 deletions

View File

@@ -0,0 +1,15 @@
using Aaru.CommonTypes.Metadata;
namespace Aaru.Server.Database.Models;
public class UploadedReportDetails
{
public UploadedReport Report { get; set; }
public List<int> SameAll { get; set; }
public List<int> SameButManufacturer { get; set; }
public List<int> ReportAll { get; set; }
public List<int> ReportButManufacturer { get; set; }
public int ReadCapabilitiesId { get; set; }
public List<TestedMedia> TestedMedias { get; set; }
public List<TestedSequentialMedia> TestedSequentialMedias { get; set; }
}