Files
AI-Account-Toolkit/cloudflare_temp_email/smtp_proxy_server/models.py

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