MibooGram/modules/apihelper/models/genshin/map.py
2023-02-19 18:12:47 +08:00

24 lines
316 B
Python

from typing import List
from pydantic import BaseModel
class Label(BaseModel):
id: int
name: str
depth: int
class LabelTree(Label):
children: List[Label]
class Point(BaseModel):
id: int
label_id: int
class ListData(BaseModel):
point_list: List[Point]
label_list: List[Label]