mirror of https://github.com/fantasticit/think.git
12 lines
221 B
TypeScript
12 lines
221 B
TypeScript
|
import { IUser } from "./user";
|
||
|
export interface IMessage {
|
||
|
id: string;
|
||
|
userId: IUser["id"];
|
||
|
title: string;
|
||
|
message: string;
|
||
|
url: string;
|
||
|
read: boolean;
|
||
|
createdAt: Date;
|
||
|
updatedAt: Date;
|
||
|
}
|