mirror of
https://github.com/fastapi-admin/fastapi-admin.git
synced 2025-08-14 18:58:13 +08:00
9 lines
137 B
Python
9 lines
137 B
Python
from typing import Dict, Sequence
|
|
|
|
from pydantic import BaseModel
|
|
|
|
|
|
class GetManyOut(BaseModel):
|
|
total: int
|
|
data: Sequence[Dict]
|