14 lines
299 B
Python
14 lines
299 B
Python
from typing import Any, List, Union
|
|
|
|
from pydantic import BaseModel, Field
|
|
|
|
from schemas import DBBase
|
|
from typing import Optional
|
|
|
|
|
|
class Url_quanxian(BaseModel):
|
|
game: List[str] = None
|
|
user: str = None
|
|
user_id: str = None
|
|
quanxian: List[str] = None
|
|
quanxian_id:List[str] = None |