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