20 lines
261 B
Go
20 lines
261 B
Go
package models
|
|
|
|
import "time"
|
|
|
|
type Product struct {
|
|
ID int
|
|
Name string
|
|
Description string
|
|
Price float64
|
|
ImageURL string
|
|
Category string
|
|
CreatedAt time.Time
|
|
}
|
|
|
|
type Category struct {
|
|
Name string
|
|
Slug string
|
|
Count int
|
|
}
|