mirror of
https://github.com/ParisNeo/lollms_hub.git
synced 2026-05-04 03:01:01 -04:00
18 lines
250 B
Python
18 lines
250 B
Python
from pydantic import BaseModel
|
|
|
|
|
|
class UserBase(BaseModel):
|
|
username: str
|
|
|
|
|
|
class UserCreate(UserBase):
|
|
password: str
|
|
|
|
|
|
class User(UserBase):
|
|
id: int
|
|
is_active: bool
|
|
is_admin: bool
|
|
|
|
class Config:
|
|
from_attributes = True |