Files
Mutual_Fund/schemas/auth.py
T

7 lines
203 B
Python
Raw Normal View History

2026-09-08 19:17:35 +08:00
"""认证相关 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)