qudoco-be/app/module/hero_contents/response/hero_contents.response.go

12 lines
423 B
Go
Raw Normal View History

2026-04-07 11:09:20 +00:00
package response
2026-04-09 18:08:56 +00:00
type HeroContentsResponse struct {
2026-04-07 11:09:20 +00:00
ID int `json:"id"`
PrimaryTitle string `json:"primary_title"`
SecondaryTitle string `json:"secondary_title"`
Description string `json:"description"`
PrimaryCTA string `json:"primary_cta"`
SecondaryCTAText string `json:"secondary_cta_text"`
ImagePath string `json:"image_path"`
ImageURL string `json:"image_url"`
}