Files
astuto/app/javascript/interfaces/json/IComment.ts
2019-09-17 17:04:19 +02:00

9 lines
155 B
TypeScript

interface ICommentJSON {
id: number;
body: string;
parent_id: number;
user_full_name: string;
updated_at: string;
}
export default ICommentJSON;