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

19 lines
319 B
Go
Raw Normal View History

package domain
import (
"encoding/json"
"time"
)
type Competitor struct {
ID int64
TenantID int64
BrandID int64
Name string
Website *string
Description *string
ProductLinesJSON json.RawMessage
CreatedAt time.Time
UpdatedAt time.Time
}