Add: Edit Count

This commit is contained in:
2024-05-15 18:46:36 +03:00
parent 7ece3268fc
commit bc6d425489
4 changed files with 13 additions and 3 deletions
+4
View File
@@ -31,6 +31,8 @@ export type Post = {
name: string,
category: Category,
content: string,
edited: boolean,
editCount: number,
postDate: Date,
rating: Rating,
metrics: PostMetrics | null,
@@ -40,6 +42,8 @@ export type Comment = {
id: number,
author: User | null,
content: string,
edited: boolean,
editCount: number,
commentDate: Date,
rating: Rating,
parentCommentId: number,