mirror of
https://github.com/astuto/astuto.git
synced 2025-12-15 19:27:52 +01:00
12 lines
226 B
TypeScript
12 lines
226 B
TypeScript
interface ICommentJSON {
|
|
id: number;
|
|
body: string;
|
|
parent_id: number;
|
|
is_post_update: boolean;
|
|
user_full_name: string;
|
|
user_email: string;
|
|
created_at: string;
|
|
updated_at: string;
|
|
}
|
|
|
|
export default ICommentJSON; |