Files
astuto/app/javascript/interfaces/IPost.ts

18 lines
324 B
TypeScript
Raw Normal View History

2019-08-26 14:29:56 +02:00
interface IPost {
id: number;
title: string;
slug?: string;
2019-08-26 14:29:56 +02:00
description?: string;
boardId: number;
postStatusId?: number;
likeCount: number;
2019-09-27 16:57:23 +02:00
liked: number;
commentsCount: number;
2019-09-27 16:57:23 +02:00
hotness: number;
userId: number;
userEmail: string;
userFullName: string;
createdAt: string;
2019-08-26 14:29:56 +02:00
}
export default IPost;