15 lines
521 B
Go
15 lines
521 B
Go
package response
|
|
|
|
import "time"
|
|
|
|
type AboutUsContentResponse 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"`
|
|
IsActive bool `json:"is_active"`
|
|
CreatedAt time.Time `json:"created_at"`
|
|
UpdatedAt time.Time `json:"updated_at"`
|
|
} |