Files
kittycad.py/kittycad/models/email_authentication_form.py
Jess Frazelle bc3d698539 switch to pydantic
Signed-off-by: Jess Frazelle <github@jessfraz.com>
2023-11-28 23:50:50 -08:00

12 lines
217 B
Python

from typing import Optional
from pydantic import BaseModel
class EmailAuthenticationForm(BaseModel):
"""The body of the form for email authentication."""
callback_url: Optional[str] = None
email: str