14 lines
189 B
Go
14 lines
189 B
Go
|
|
package domain
|
||
|
|
|
||
|
|
import "time"
|
||
|
|
|
||
|
|
type BrandKeyword struct {
|
||
|
|
ID int64
|
||
|
|
TenantID int64
|
||
|
|
BrandID int64
|
||
|
|
Name string
|
||
|
|
Status string
|
||
|
|
CreatedAt time.Time
|
||
|
|
UpdatedAt time.Time
|
||
|
|
}
|