MibooGram/modules/wiki/models/weapon.py

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

19 lines
301 B
Python
Raw Normal View History

from pydantic import BaseModel
from .enums import ZZZRank
class Weapon(BaseModel):
id: int
""""武器ID"""
name: str
"""名称"""
name_en: str
"""英文名称"""
description: str
"""描述"""
icon: str = ""
"""图标"""
rank: ZZZRank
"""稀有度"""