mirror of
https://github.com/NapNeko/NapCatQQ.git
synced 2026-01-09 04:49:03 +08:00
19 lines
630 B
TypeScript
19 lines
630 B
TypeScript
import { OB11GroupNoticeEvent } from './OB11GroupNoticeEvent';
|
|
import { NapCatCore } from '@/core';
|
|
|
|
export class OB11GroupBanEvent extends OB11GroupNoticeEvent {
|
|
notice_type = 'group_ban';
|
|
operator_id: number;
|
|
duration: number;
|
|
sub_type: 'ban' | 'lift_ban';
|
|
|
|
constructor(core: NapCatCore, groupId: number, userId: number, operatorId: number, duration: number, sub_type: 'ban' | 'lift_ban') {
|
|
super(core, groupId, userId);
|
|
this.group_id = groupId;
|
|
this.operator_id = operatorId;
|
|
this.user_id = userId;
|
|
this.duration = duration;
|
|
this.sub_type = sub_type;
|
|
}
|
|
}
|