Create OB11FriendAddNoticeEvent.ts

This commit is contained in:
Fripine 2024-04-24 17:32:31 +08:00 committed by GitHub
parent b6ea185ce7
commit 84894a73e1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -0,0 +1,11 @@
import { OB11BaseNoticeEvent } from './OB11BaseNoticeEvent';
export class OB11FriendAddNoticeEvent extends OB11BaseNoticeEvent {
notice_type = 'friend_add';
user_id: number;
public constructor(user_Id: number) {
super();
this.user_id = user_Id;
}
}