1
0
Fork 0
forked from goffee/core
core/template/components/content_tabledetail.go
2024-10-27 12:54:34 -05:00

16 lines
465 B
Go

package components
type ContentTabledetail struct {
ID string
TableClass string // table-primary, table-secondary,.. table-striped table-bordered
HeadClass string // table-dark table-light
Title string
AllTD []ContentTabledetailTD
}
type ContentTabledetailTD struct {
ID string
Caption string
ValueType string // -> default string, href, badge
Value interface{} // string or component struct according ValueType
}