Backend/internal/interfaces/api/requests/put_post_response.go
2025-09-20 18:16:26 +04:00

7 lines
162 B
Go

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