mirror of
https://github.com/NapNeko/NapCatQQ.git
synced 2025-12-30 13:39:03 +08:00
12 lines
322 B
TypeScript
12 lines
322 B
TypeScript
import { OB11BaseNoticeEvent } from '../notice/OB11BaseNoticeEvent';
|
|
import { EventType } from '../OB11BaseEvent';
|
|
|
|
|
|
export class OB11FriendRequestEvent extends OB11BaseNoticeEvent {
|
|
post_type = EventType.REQUEST;
|
|
user_id: number = 0;
|
|
request_type = 'friend' as const;
|
|
comment: string = '';
|
|
flag: string = '';
|
|
}
|