mirror of
https://github.com/NapNeko/NapCatQQ.git
synced 2026-03-02 08:40:26 +00:00
12 lines
338 B
TypeScript
12 lines
338 B
TypeScript
import { OB11GroupNoticeEvent } from '../notice/OB11GroupNoticeEvent';
|
|
import { EventType } from '../OB11BaseEvent';
|
|
|
|
|
|
export class OB11GroupRequestEvent extends OB11GroupNoticeEvent {
|
|
post_type = EventType.REQUEST;
|
|
request_type = 'group' as const;
|
|
sub_type: 'add' | 'invite' = 'add';
|
|
comment: string = '';
|
|
flag: string = '';
|
|
}
|