summaryrefslogtreecommitdiff
path: root/HBContext.cs
diff options
context:
space:
mode:
authorJake Mannens <jake@asger.xyz>2023-09-01 13:03:57 +1000
committerJake Mannens <jake@asger.xyz>2023-09-01 13:03:57 +1000
commit11f8eac60abfd52d59e84ba7b3c1c1c042c03941 (patch)
tree5801c55afd9682f7fd6a0e2480417ee87af9465e /HBContext.cs
parent9d4c33a4cdd1b82db831ca6c71e8fdc2f9f63f58 (diff)
Merged OCR functionality
Diffstat (limited to 'HBContext.cs')
-rw-r--r--HBContext.cs1
1 files changed, 1 insertions, 0 deletions
diff --git a/HBContext.cs b/HBContext.cs
index f6bc15c..15dad6d 100644
--- a/HBContext.cs
+++ b/HBContext.cs
@@ -15,6 +15,7 @@ public class HBContext : DbContext {
public DbSet<Tag> Tags { get; set; }
public DbSet<Media> Media { get; set; }
public DbSet<UploadedFile> UploadedFiles { get; set; }
+ public DbSet<OcrData> OcrData { get; set; }
private IConfigService config;