feat: GroupMemberTitle

This commit is contained in:
手瓜一十雪
2025-04-02 21:30:25 +08:00
parent a8ab6310a4
commit 34b3f92f74
4 changed files with 99 additions and 2 deletions

View File

@@ -0,0 +1,16 @@
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;
}
}