mirror of
https://gitlab.com/MoonTestUse1/AdministrationItDepartmens.git
synced 2025-08-14 00:25:46 +02:00
16 lines
279 B
Python
16 lines
279 B
Python
from pydantic import BaseModel, EmailStr
|
|
|
|
class UserBase(BaseModel):
|
|
email: EmailStr
|
|
full_name: str
|
|
|
|
class UserCreate(UserBase):
|
|
password: str
|
|
|
|
class User(UserBase):
|
|
id: int
|
|
is_active: bool
|
|
is_admin: bool
|
|
|
|
class Config:
|
|
from_attributes = True |