NapCatQQ/src/onebot/event/request/OB11GroupRequest.ts
手瓜一十雪 636568fd30
fix: 字面量
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
2025-05-18 18:56:59 +08:00

22 lines
622 B
TypeScript

import { NapCatCore } from '@/core';
import { OB11BaseRequestEvent } from './OB11BaseRequestEvent';
export class OB11GroupRequestEvent extends OB11BaseRequestEvent {
override request_type: 'group' = 'group';
group_id: number;
user_id: number;
comment: string;
flag: string;
sub_type: string;
constructor(core: NapCatCore, groupId: number, userId: number, sub_type: string, comment: string, flag: string) {
super(core);
this.group_id = groupId;
this.user_id = userId;
this.sub_type = sub_type;
this.comment = comment;
this.flag = flag;
}
}