10 lines
127 B
Go
Raw Normal View History

2025-06-14 21:17:13 +07:00
package entity
type Category struct {
ID int64
PartnerID int64
Name string
CreatedAt int64
UpdatedAt int64
}