qudoco-be/app/module/hero_section/request/hero_section.request.go

11 lines
369 B
Go
Raw Normal View History

2026-04-07 11:09:20 +00:00
package request
type HeroSectionRequest struct {
PrimaryTitle string `json:"primary_title"`
SecondaryTitle string `json:"secondary_title"`
Description string `json:"description"`
PrimaryCTA string `json:"primary_cta"`
SecondaryCTA string `json:"secondary_cta_text"`
ImagePath string `json:"image_path"`
ImageURL string `json:"image_url"`
}