mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-06-04 20:05:16 +02:00
11 lines
258 B
Python
11 lines
258 B
Python
"""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"
|