mirror of
https://github.com/astuto/astuto.git
synced 2025-12-15 19:27:52 +01:00
12 lines
219 B
TypeScript
12 lines
219 B
TypeScript
interface IPostJSON {
|
|
id: number;
|
|
title: string;
|
|
description?: string;
|
|
board_id: number;
|
|
post_status_id?: number;
|
|
comments_count: number;
|
|
user_id: number;
|
|
created_at: string;
|
|
}
|
|
|
|
export default IPostJSON; |