Files

19 lines
319 B
Go
Raw Permalink 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
}