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