12 lines
160 B
Go
12 lines
160 B
Go
package models
|
|
|
|
import "time"
|
|
|
|
type Section struct {
|
|
ID string
|
|
Name string
|
|
CreatedAt time.Time
|
|
UpdatedAt time.Time
|
|
Categories []Category
|
|
}
|