You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

13 lines
363 B

package models
type Settings struct {
SiteName string `json:"site_name"`
HomeTitle string `json:"home_title"`
HomeSubtitle string `json:"home_subtitle"`
}
type UpdateSettingsRequest struct {
SiteName *string `json:"site_name,omitempty"`
HomeTitle *string `json:"home_title,omitempty"`
HomeSubtitle *string `json:"home_subtitle,omitempty"`
}