12 lines
422 B
Go
12 lines
422 B
Go
package response
|
|
|
|
type HeroSectionResponse struct {
|
|
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"`
|
|
} |