mirror of
https://github.com/StepanovPlaton/torrent_backend.git
synced 2026-04-03 12:20:38 +04:00
20 lines
485 B
Python
20 lines
485 B
Python
from typing import Optional
|
|
from fastapi import Body
|
|
from pydantic import BaseModel, ConfigDict, Field
|
|
|
|
|
|
class UserBase(BaseModel):
|
|
email: str = Field(examples=["email@gmail.com"])
|
|
name: str = Field(examples=["username"])
|
|
|
|
|
|
class UserCreate(UserBase):
|
|
password: str = Field(examples=["password"])
|
|
|
|
|
|
class User(UserBase):
|
|
id: int = Field(examples=[1])
|
|
hash_of_password: str = Field(examples=["hash_of_password"])
|
|
|
|
model_config = ConfigDict(from_attributes=True)
|