feat(hosted-file): add filename_no_ext and filename_w_ext to Hosted_File_Base model

This commit is contained in:
Scott Idem
2026-02-03 14:06:42 -05:00
parent 6f7fde7b87
commit 9e423806df

View File

@@ -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]