mirror of
https://github.com/astuto/astuto.git
synced 2025-12-15 03:07:52 +01:00
11 lines
185 B
TypeScript
11 lines
185 B
TypeScript
interface IPost {
|
|
id: number;
|
|
title: string;
|
|
description?: string;
|
|
board_id: number;
|
|
post_status_id?: number;
|
|
user_id: number;
|
|
created_at: string;
|
|
}
|
|
|
|
export default IPost; |