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