Files
Mutual_Fund/schemas/auth.py
T
2026-09-08 19:17:35 +08:00

7 lines
203 B
Python

"""认证相关 DTO。"""
from pydantic import BaseModel, Field
class LoginReq(BaseModel):
username: str = Field(min_length=1, max_length=64)
password: str = Field(min_length=1, max_length=128)