mirror of
https://github.com/astuto/astuto.git
synced 2025-12-16 11:47:56 +01:00
12 lines
205 B
TypeScript
12 lines
205 B
TypeScript
interface IPost {
|
|
id: number;
|
|
title: string;
|
|
description?: string;
|
|
boardId: number;
|
|
postStatusId?: number;
|
|
commentsCount: number;
|
|
userId: number;
|
|
createdAt: string;
|
|
}
|
|
|
|
export default IPost; |