6 lines
80 B
Go
6 lines
80 B
Go
|
package domain
|
||
|
|
||
|
type CommentCreateRequest struct {
|
||
|
Body string `json:"body"`
|
||
|
}
|