niki/productapp/service/category/entity.go

11 lines
131 B
Go

package category
import "time"
type Category struct {
ID uint
Name string
Slug string
CreatedAt time.Time
}