Source code for kittycad.models.email_authentication_form

from typing import Optional

from pydantic import BaseModel



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