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