This repository has been archived on 2024-11-28. You can view files and clone it, but cannot push or open issues or pull requests.
Files
schisandra-cloud-album/api/comment_api/dto/request_dto.go
2024-09-19 18:44:53 +08:00

7 lines
113 B
Go

package dto
type CommentRequest struct {
Content string `json:"content"`
Images []string `json:"images"`
}