mirror of
https://github.com/PaiGramTeam/MibooGram.git
synced 2024-11-16 21:00:27 +00:00
24 lines
316 B
Python
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]
|