core/template/components/content_table.go
2024-10-14 12:13:51 -05:00

17 lines
233 B
Go

package components
type ContentTable struct {
ID string
AllTH []ContentTableTH
AllTD [][]ContentTableTD
}
type ContentTableTH struct {
ID string
Value string
}
type ContentTableTD struct {
ID string
Value string
}