mirror of
https://github.com/dreamhunter2333/cloudflare_temp_email.git
synced 2026-05-07 06:22:44 +08:00
11 lines
203 B
Python
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
|