mirror of
https://github.com/NapNeko/NapCatQQ.git
synced 2026-02-12 16:00:27 +00:00
18 lines
519 B
TypeScript
18 lines
519 B
TypeScript
import { OB11GroupNoticeEvent } from './OB11GroupNoticeEvent';
|
|
|
|
export class OB11GroupBanEvent extends OB11GroupNoticeEvent {
|
|
notice_type = 'group_ban';
|
|
operator_id: number;
|
|
duration: number;
|
|
sub_type: 'ban' | 'lift_ban';
|
|
|
|
constructor(groupId: number, userId: number, operatorId: number, duration: number, sub_type: 'ban' | 'lift_ban') {
|
|
super();
|
|
this.group_id = groupId;
|
|
this.operator_id = operatorId;
|
|
this.user_id = userId;
|
|
this.duration = duration;
|
|
this.sub_type = sub_type;
|
|
}
|
|
}
|