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

9 lines
155 B
TypeScript
Raw Normal View History

interface ICommentJSON {
id: number;
body: string;
2019-09-17 17:04:19 +02:00
parent_id: number;
user_full_name: string;
updated_at: string;
}
export default ICommentJSON;