diff --git a/app/models/hosted_file_models.py b/app/models/hosted_file_models.py index 213533a..c20de4a 100644 --- a/app/models/hosted_file_models.py +++ b/app/models/hosted_file_models.py @@ -27,6 +27,8 @@ class Hosted_File_Base(BaseModel): subdirectory_path: Optional[str] = Field(None, exclude=True) # NOTE: This will frequently only contain numbers, but it still needs to be a string filename: Optional[str] + filename_no_ext: Optional[str] + filename_w_ext: Optional[str] extension: Optional[str] content_type: Optional[str] mimetype: Optional[str]