7 lines
142 B
Python
7 lines
142 B
Python
from pydantic import BaseModel, Field
|
|
|
|
|
|
class AuthEntity(BaseModel):
|
|
login: str = Field(...)
|
|
password: str = Field(..., min_length=5)
|