This commit is contained in:
手瓜一十雪
2025-04-02 21:40:10 +08:00
parent 34b3f92f74
commit f4e3c460e0
2 changed files with 35 additions and 47 deletions

View File

@@ -1,16 +0,0 @@
import { OB11GroupNoticeEvent } from './OB11GroupNoticeEvent';
import { NapCatCore } from '@/core';
export class GroupMemberTitle extends OB11GroupNoticeEvent {
notice_type = 'title';
sub_type: 'set' | 'unset' = 'set';
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;
}
}