mirror of https://github.com/msgbyte/tailchat
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
296 B
TypeScript
18 lines
296 B
TypeScript
3 years ago
|
/**
|
||
|
* 收件箱记录项类型
|
||
|
*/
|
||
|
export interface InboxItem {
|
||
|
_id: string;
|
||
|
userId: string;
|
||
|
readed: boolean;
|
||
|
type: 'message';
|
||
|
message?: {
|
||
|
groupId?: string;
|
||
|
converseId: string;
|
||
|
messageId: string;
|
||
|
messageSnippet: string;
|
||
|
};
|
||
|
createdAt: string;
|
||
|
updatedAt: string;
|
||
|
}
|