2019-08-26 14:29:56 +02:00
|
|
|
interface IPost {
|
|
|
|
|
id: number;
|
|
|
|
|
title: string;
|
2024-04-05 18:23:31 +02:00
|
|
|
slug?: string;
|
2019-08-26 14:29:56 +02:00
|
|
|
description?: string;
|
2019-09-11 18:30:59 +02:00
|
|
|
boardId: number;
|
|
|
|
|
postStatusId?: number;
|
2023-02-05 11:55:38 +01:00
|
|
|
likeCount: number;
|
2019-09-27 16:57:23 +02:00
|
|
|
liked: number;
|
2019-09-21 11:17:58 +02:00
|
|
|
commentsCount: number;
|
2019-09-27 16:57:23 +02:00
|
|
|
hotness: number;
|
2019-09-11 18:30:59 +02:00
|
|
|
userId: number;
|
2022-06-22 10:17:42 +02:00
|
|
|
userEmail: string;
|
|
|
|
|
userFullName: string;
|
2019-09-11 18:30:59 +02:00
|
|
|
createdAt: string;
|
2019-08-26 14:29:56 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export default IPost;
|