NapCatQQ/packages/napcat-onebot/event/notice/OB11GroupRecallNoticeEvent.ts
2025-11-13 15:10:47 +08:00

17 lines
526 B
TypeScript

import { OB11GroupNoticeEvent } from './OB11GroupNoticeEvent';
import { NapCatCore } from 'napcat-core';
export class OB11GroupRecallNoticeEvent extends OB11GroupNoticeEvent {
notice_type = 'group_recall';
operator_id: number;
message_id: number;
constructor (core: NapCatCore, groupId: number, userId: number, operatorId: number, messageId: number) {
super(core, groupId, userId);
this.group_id = groupId;
this.user_id = userId;
this.operator_id = operatorId;
this.message_id = messageId;
}
}