Files
goyco/internal/dto/post_request.go

14 lines
240 B
Go

package dto
type CreatePostRequest struct {
Title string `json:"title"`
URL string `json:"url"`
Content string `json:"content"`
}
type UpdatePostRequest struct {
Title string `json:"title"`
Content string `json:"content"`
}