PaiGram/modules/apihelper/models/genshin/map.py

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
316 B
Python
Raw Normal View History

2023-02-19 10:12:47 +00:00
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]