LLOneBot/src/onebot11/action/msg/MarkMsgAsRead.ts
linyuchen 983d2462d4 refactor: action folder
feat: group card event
feat: group title event
2024-03-23 00:00:43 +08:00

14 lines
343 B
TypeScript

import BaseAction from "../BaseAction";
import {ActionName} from "../types";
interface Payload{
message_id: number
}
export default class GoCQHTTPMarkMsgAsRead extends BaseAction<Payload, null>{
actionName = ActionName.GoCQHTTP_MarkMsgAsRead
protected async _handle(payload: Payload): Promise<null> {
return null
}
}