mirror of
https://github.com/NapNeko/NapCatQQ.git
synced 2026-01-13 19:50:35 +00:00
15 lines
410 B
TypeScript
15 lines
410 B
TypeScript
import { OB11BaseNoticeEvent } from './OB11BaseNoticeEvent';
|
|
import { NapCatCore } from 'napcat-core';
|
|
|
|
export class OB11FriendRecallNoticeEvent extends OB11BaseNoticeEvent {
|
|
notice_type = 'friend_recall';
|
|
user_id: number;
|
|
message_id: number;
|
|
|
|
public constructor (core: NapCatCore, userId: number, messageId: number) {
|
|
super(core);
|
|
this.user_id = userId;
|
|
this.message_id = messageId;
|
|
}
|
|
}
|