mirror of
https://github.com/fastapi-admin/fastapi-admin.git
synced 2026-03-13 10:32:25 +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]
|