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