mirror of
https://github.com/NapNeko/NapCatQQ.git
synced 2026-01-13 11:40:35 +00:00
14 lines
397 B
TypeScript
14 lines
397 B
TypeScript
import { OB11GroupNoticeEvent } from './OB11GroupNoticeEvent';
|
|
import { NapCatCore } from 'napcat-core';
|
|
|
|
export class OB11GroupNameEvent extends OB11GroupNoticeEvent {
|
|
notice_type = 'notify';
|
|
sub_type = 'group_name';
|
|
name_new: string;
|
|
|
|
constructor (core: NapCatCore, groupId: number, userId: number, nameNew: string) {
|
|
super(core, groupId, userId);
|
|
this.name_new = nameNew;
|
|
}
|
|
}
|