Files
goyco/internal/dto/post_request.go
2025-11-23 13:14:41 +01:00

13 lines
239 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"`
}