mirror of
https://github.com/PaiGramTeam/PamGram.git
synced 2024-11-16 12:02:16 +00:00
30 lines
486 B
Python
30 lines
486 B
Python
# 光锥
|
|
from pydantic import BaseModel
|
|
|
|
|
|
class YattaLightConePath(BaseModel):
|
|
id: str
|
|
name: str
|
|
|
|
|
|
class YattaLightConeTypes(BaseModel):
|
|
pathType: YattaLightConePath
|
|
|
|
|
|
class YattaLightCone(BaseModel):
|
|
id: int
|
|
""""光锥ID"""
|
|
name: str
|
|
"""名称"""
|
|
description: str
|
|
"""描述"""
|
|
icon: str = ""
|
|
"""图标"""
|
|
big_pic: str = ""
|
|
"""大图"""
|
|
rank: int
|
|
"""稀有度"""
|
|
types: YattaLightConeTypes
|
|
"""命途"""
|
|
route: str
|