Files
woogo/entity/system_status_theme.go
scheibling 30fb57f4f7 Created
2025-04-08 19:24:11 +02:00

18 lines
773 B
Go

package entity
// SystemStatusTheme System status theme properties
type SystemStatusTheme struct {
Name string `json:"name"`
Version string `json:"version"`
VersionLatest string `json:"version_latest"`
AuthorURL string `json:"author_url"`
IsChildTheme bool `json:"is_child_theme"`
HasWooCommerceSupport bool `json:"has_woo_commerce_support"`
HasWooCommerceFile bool `json:"has_woo_commerce_file"`
HasOutdatedTemplates bool `json:"has_outdated_templates"`
Overrides []string `json:"overrides"`
ParentName string `json:"parent_name"`
ParentVersion string `json:"parent_version"`
ParentAuthorURL string `json:"parent_author_url"`
}