add notify user
This commit is contained in:
@@ -1,4 +1,5 @@
|
||||
import type { Model } from "./Model";
|
||||
import type { User } from "./User";
|
||||
|
||||
/** 通知消息类型 */
|
||||
export type NotifyMsgType = "INTERNAL" | "SMS" | "MAIL" | "HTTP" | "WECHAT";
|
||||
@@ -54,4 +55,8 @@ export type NotifyDetail = {
|
||||
readAt?: number;
|
||||
/** 所属通知 */
|
||||
notify?: Notify;
|
||||
/** 发送用户 */
|
||||
fromUser?: User;
|
||||
/** 接收用户 */
|
||||
toUser?: User;
|
||||
} & Model;
|
||||
|
||||
Reference in New Issue
Block a user