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

@@ -533,4 +533,10 @@ namespace Marechai.Database
MouldSid = 3, MasteringCode = 4, Barcode = 5,
Toolstamp = 6
}
public enum DocumentScanType : uint
{
Page = 0, Cover = 1, BackCover = 2,
TableOfContents = 3, Index = 4, CopyrightPage = 5
}
}