"""Auth-specific Pydantic schemas."""
from __future__ import annotations
from pydantic import BaseModel, EmailStr
class RegisterRequest(BaseModel):
email: EmailStr
password: str
name: str
organization_name: str
Powered by TurnKey Linux.