This repository has been archived on 2025-05-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
shop/app/models/Section.go
Damian Wessels 7c3d3e03bc controller added
Registrierung hinzugefügt
2023-11-12 20:28:09 +01:00

12 lines
160 B
Go

package models
import "time"
type Section struct {
ID string
Name string
CreatedAt time.Time
UpdatedAt time.Time
Categories []Category
}