mirror of
https://github.com/NapNeko/NapCatQQ.git
synced 2026-01-05 18:39:06 +08:00
16 lines
459 B
TypeScript
16 lines
459 B
TypeScript
import { OB11GroupNoticeEvent } from './OB11GroupNoticeEvent';
|
|
import { NapCatCore } from '@/core';
|
|
|
|
export class OB11GroupTitleEvent extends OB11GroupNoticeEvent {
|
|
notice_type = 'notify';
|
|
sub_type = 'title';
|
|
title: string;
|
|
|
|
constructor(core: NapCatCore, groupId: number, userId: number, title: string) {
|
|
super(core, groupId, userId);
|
|
this.group_id = groupId;
|
|
this.user_id = userId;
|
|
this.title = title;
|
|
}
|
|
}
|