stmp_server / models.py
kpinquan's picture
Upload models.py
9f72602 verified
raw
history blame contribute delete
203 Bytes
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