refactor: friend add

This commit is contained in:
手瓜一十雪
2024-06-09 19:13:49 +08:00
parent 3453845de6
commit 5752df5c5a
52 changed files with 72 additions and 89 deletions

View File

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