feat(file-storage): add document_files model and enum

This commit is contained in:
CREDO23 2026-06-02 16:10:43 +02:00
parent 1bb1022d35
commit 72174c780a
3 changed files with 88 additions and 0 deletions

View file

@ -0,0 +1,11 @@
"""DocumentFile kinds: the original upload plus future derived artifacts."""
from __future__ import annotations
from enum import StrEnum
class DocumentFileKind(StrEnum):
ORIGINAL = "ORIGINAL"
REDACTED = "REDACTED"
FILLED_FORM = "FILLED_FORM"