12 lines
224 B
Python
12 lines
224 B
Python
from typing import Any, List, Union
|
|
|
|
from pydantic import BaseModel, Field
|
|
|
|
from schemas import DBBase
|
|
from typing import Optional
|
|
|
|
|
|
class Api_board(BaseModel):
|
|
api_path: str = None
|
|
api_name: str = None
|
|
name: str |