Backend/internal/interfaces/api/requests/put_post_request.go
2025-09-22 22:12:49 +04:00

7 lines
162 B
Go

package requests
type PutPostRequest struct {
Title string `json:"title"`
Description string `json:"description"`
Content string `json:"content"`
}