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/Category.go
Damian Wessels 7c3d3e03bc controller added
Registrierung hinzugefügt
2023-11-12 20:28:09 +01:00

15 lines
249 B
Go

package models
import "time"
type Category struct {
ID string
ParentID string
Section Section
SectionID string
Products []Product `gorm:"many2many:product_categories;"`
Name string
CreatedAt time.Time
UpdatedAt time.Time
}