mirror of
https://github.com/PaiGramTeam/MibooGram.git
synced 2024-11-16 12:51:45 +00:00
16 lines
257 B
Python
16 lines
257 B
Python
from model.baseobject import BaseObject
|
|
|
|
|
|
class FetterInfo(BaseObject):
|
|
"""
|
|
好感度信息
|
|
"""
|
|
|
|
def __init__(self, level: int = 0):
|
|
"""
|
|
:param level: 等级
|
|
"""
|
|
self.level = level
|
|
|
|
__slots__ = ("level",)
|