Files
cloudflare_temp_email/smtp_proxy_server/models.py
2024-05-12 11:34:52 +08:00

11 lines
203 B
Python

from typing import Dict, List
from pydantic import BaseModel
class EmailModel(BaseModel):
headers: Dict[str, str]
body: str
content_type: str
subparts: List["EmailModel"]
size: int