Files
X25020501_card_book/core/routers/file/schema.py
2025-02-18 14:26:47 +08:00

15 lines
253 B
Python

# -*- coding = utf-8 -*-
# @Time : 2025/2/13 下午5:01
# @File : schema.py
# @Software : PyCharm
# @Author : xingc
# @Desc :
from pydantic import BaseModel
class FileOut(BaseModel):
filename: str
content_type: str
size: int
hash: str