Files
astuto/app/javascript/interfaces/IComment.ts
2019-10-01 19:15:03 +02:00

11 lines
189 B
TypeScript

interface IComment {
id: number;
body: string;
parentId: number;
isPostUpdate: boolean;
userFullName: string;
userEmail: string;
updatedAt: string;
}
export default IComment;