mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-12-25 19:55:19 -05:00
18 lines
234 B
Python
18 lines
234 B
Python
from fastapi_camelcase import CamelModel
|
|
|
|
|
|
class SignUpIn(CamelModel):
|
|
name: str
|
|
admin: bool
|
|
|
|
|
|
class SignUpToken(SignUpIn):
|
|
token: str
|
|
|
|
|
|
class SignUpOut(SignUpToken):
|
|
id: int
|
|
|
|
class Config:
|
|
orm_mode = True
|