Add database models for document, book and magazine scans (cover, backcover, etc).

This commit is contained in:
2020-08-12 02:31:17 +01:00
parent 8cc6542980
commit 17a6eb7bd7
15 changed files with 8043 additions and 1 deletions

View File

@@ -34,5 +34,8 @@ namespace Marechai.Database.Models
public virtual ICollection<OwnedMachinePhoto> OwnedMachinePhotos { get; set; }
public virtual ICollection<OwnedMachine> OwnedMachines { get; set; }
public virtual ICollection<Dump> Dumps { get; set; }
public virtual ICollection<BookScan> BookScans { get; set; }
public virtual ICollection<DocumentScan> DocumentScans { get; set; }
public virtual ICollection<MagazineScan> MagazineScans { get; set; }
}
}