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

10 lines
164 B
TypeScript
Raw Normal View History

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