add comment and reply framework

This commit is contained in:
landaiqing
2024-09-19 18:44:53 +08:00
parent ef5d7daa10
commit 8d5d918a7d
11 changed files with 80 additions and 20 deletions

View File

@@ -0,0 +1,6 @@
package dto
type CommentRequest struct {
Content string `json:"content"`
Images []string `json:"images"`
}