mirror of
https://github.com/PaiGramTeam/PamGram.git
synced 2024-11-18 12:45:40 +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",)
|