mirror of https://github.com/fantasticit/think.git
14 lines
282 B
TypeScript
14 lines
282 B
TypeScript
|
import { IUser } from "./user";
|
||
|
export interface ITemplate {
|
||
|
id: string;
|
||
|
createUserId: IUser["id"];
|
||
|
createUser: IUser;
|
||
|
title: string;
|
||
|
content: string;
|
||
|
state: string;
|
||
|
usageAmount: number;
|
||
|
isPublic: boolean;
|
||
|
createdAt: Date;
|
||
|
updatedAt: Date;
|
||
|
}
|