qudoco-be/app/module/popup_news_contents/response/popup_news_contents.respons...

13 lines
684 B
Go

package response
import imageRes "web-qudo-be/app/module/popup_news_content_images/response"
type PopupNewsContentsResponse struct {
ID uint `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"`
Images []imageRes.PopupNewsContentImagesResponse `json:"images"`
}