Files

14 lines
189 B
Go
Raw Permalink 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
}