mirror of
https://github.com/NapNeko/NapCatQQ.git
synced 2026-01-01 23:39:09 +08:00
17 lines
445 B
TypeScript
17 lines
445 B
TypeScript
import { OB11GroupNoticeEvent } from './OB11GroupNoticeEvent';
|
|
|
|
export class OB11GroupCardEvent extends OB11GroupNoticeEvent {
|
|
notice_type = 'group_card';
|
|
card_new: string;
|
|
card_old: string;
|
|
|
|
|
|
constructor(groupId: number, userId: number, cardNew: string, cardOld: string) {
|
|
super();
|
|
this.group_id = groupId;
|
|
this.user_id = userId;
|
|
this.card_new = cardNew;
|
|
this.card_old = cardOld;
|
|
}
|
|
}
|