mirror of
https://github.com/astuto/astuto.git
synced 2025-12-16 11:47:56 +01:00
10 lines
177 B
TypeScript
10 lines
177 B
TypeScript
interface ICommentJSON {
|
|
id: number;
|
|
body: string;
|
|
parent_id: number;
|
|
user_full_name: string;
|
|
user_email: string;
|
|
updated_at: string;
|
|
}
|
|
|
|
export default ICommentJSON; |