mirror of
https://github.com/astuto/astuto.git
synced 2025-12-16 11:47:56 +01:00
10 lines
164 B
TypeScript
10 lines
164 B
TypeScript
interface IComment {
|
|
id: number;
|
|
body: string;
|
|
parentId: number;
|
|
userFullName: string;
|
|
userEmail: string;
|
|
updatedAt: string;
|
|
}
|
|
|
|
export default IComment; |