mirror of
https://github.com/astuto/astuto.git
synced 2025-12-15 11:17:49 +01:00
13 lines
230 B
TypeScript
13 lines
230 B
TypeScript
interface IComment {
|
|
id: number;
|
|
body: string;
|
|
parentId: number;
|
|
isPostUpdate: boolean;
|
|
userFullName: string;
|
|
userEmail: string;
|
|
userRole: number;
|
|
createdAt: string;
|
|
updatedAt: string;
|
|
}
|
|
|
|
export default IComment; |