9 lines
188 B
Python
9 lines
188 B
Python
from pydantic import BaseModel
|
|
from typing import List
|
|
|
|
|
|
class Eventpoint(BaseModel):
|
|
game: str # 游戏名
|
|
event_name: str # 事件名
|
|
event_attr: List[str] # 事件属性
|