Files
geo/server/internal/tenant/domain/brand_keyword.go
T

14 lines
189 B
Go
Raw Normal View History

package domain
import "time"
type BrandKeyword struct {
ID int64
TenantID int64
BrandID int64
Name string
Status string
CreatedAt time.Time
UpdatedAt time.Time
}