Files
astuto/app/javascript/interfaces/json/IComment.ts

13 lines
247 B
TypeScript
Raw Normal View History

interface ICommentJSON {
id: number;
body: string;
2019-09-17 17:04:19 +02:00
parent_id: number;
2019-10-01 19:15:03 +02:00
is_post_update: boolean;
user_full_name: string;
2019-09-30 23:28:52 +02:00
user_email: string;
user_role: number;
created_at: string;
updated_at: string;
}
export default ICommentJSON;