mirror of
https://github.com/PaiGramTeam/HonkaiStarRailWikiDataParser.git
synced 2025-02-07 14:18:52 +00:00
13 lines
207 B
Python
13 lines
207 B
Python
from typing import List
|
|
|
|
from pydantic import BaseModel
|
|
|
|
|
|
class LightConeIcon(BaseModel):
|
|
id: int
|
|
"""光锥ID"""
|
|
name: str
|
|
"""名称"""
|
|
icon: List[str]
|
|
"""图标(从小到大)"""
|