17 lines
233 B
Go
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
|
|
}
|