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

9 lines
143 B
TypeScript
Raw Normal View History

interface IComment {
id: number;
body: string;
2019-09-17 17:04:19 +02:00
parentId: number;
userFullName: string;
updatedAt: string;
}
export default IComment;