Files
astuto/app/javascript/interfaces/json/IComment.ts
2022-06-22 10:17:42 +02:00

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;