mirror of
https://github.com/NapNeko/NapCatQQ.git
synced 2026-02-12 16:00:27 +00:00
15 lines
443 B
TypeScript
15 lines
443 B
TypeScript
import { OB11GroupNoticeEvent } from './OB11GroupNoticeEvent';
|
|
|
|
export class OB11GroupRecallNoticeEvent extends OB11GroupNoticeEvent {
|
|
notice_type = 'group_recall';
|
|
operator_id: number;
|
|
message_id: number;
|
|
|
|
constructor(groupId: number, userId: number, operatorId: number, messageId: number) {
|
|
super();
|
|
this.group_id = groupId;
|
|
this.user_id = userId;
|
|
this.operator_id = operatorId;
|
|
this.message_id = messageId;
|
|
}
|
|
} |