mirror of
https://github.com/NapNeko/NapCatQQ.git
synced 2026-01-14 20:30:34 +00:00
17 lines
526 B
TypeScript
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;
|
|
}
|
|
}
|