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

13 lines
230 B
TypeScript
Raw Normal View History

interface IComment {
id: number;
body: string;
2019-09-17 17:04:19 +02:00
parentId: number;
2019-10-01 19:15:03 +02:00
isPostUpdate: boolean;
userFullName: string;
2019-09-30 23:28:52 +02:00
userEmail: string;
userRole: number;
createdAt: string;
updatedAt: string;
}
export default IComment;