perf: 增加一些注释

This commit is contained in:
Soulter
2023-11-14 11:30:08 +08:00
parent b3cec4781b
commit 3960a19bcb

View File

@@ -11,24 +11,24 @@ from nakuru.entities.components import Plain, At, Image
from botpy.types.message import Reference from botpy.types.message import Reference
class NakuruGuildMember(): class NakuruGuildMember():
tiny_id: int tiny_id: int # 发送者识别号
user_id: int user_id: int # 发送者识别号
title: str title: str
nickname: str nickname: str # 昵称
role: int role: int # 角色
icon_url: str icon_url: str # 头像url
class NakuruGuildMessage(): class NakuruGuildMessage():
type: str = "GuildMessage" type: str = "GuildMessage"
self_id: int self_id: int # bot的qq号
self_tiny_id: int self_tiny_id: int # bot的qq号
sub_type: str sub_type: str # 消息类型
message_id: str message_id: str # 消息id
guild_id: int guild_id: int # 频道号
channel_id: int channel_id: int # 子频道号
user_id: int user_id: int # 发送者qq号
message: list message: list # 消息内容
sender: NakuruGuildMember sender: NakuruGuildMember # 发送者信息
raw_message: Message raw_message: Message
def __str__(self) -> str: def __str__(self) -> str: