core/template/components/content_table.go

18 lines
233 B
Go
Raw Normal View History

2024-10-14 13:13:51 -04:00
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
}