mirror of
https://github.com/astuto/astuto.git
synced 2025-12-15 19:27:52 +01:00
11 lines
180 B
TypeScript
11 lines
180 B
TypeScript
interface IPost {
|
|
id: number;
|
|
title: string;
|
|
description?: string;
|
|
boardId: number;
|
|
postStatusId?: number;
|
|
userId: number;
|
|
createdAt: string;
|
|
}
|
|
|
|
export default IPost; |