14 lines
198 B
Go
14 lines
198 B
Go
|
|
package domain
|
||
|
|
|
||
|
|
import "time"
|
||
|
|
|
||
|
|
type Brand struct {
|
||
|
|
ID int64
|
||
|
|
TenantID int64
|
||
|
|
Name string
|
||
|
|
Description *string
|
||
|
|
Status string
|
||
|
|
CreatedAt time.Time
|
||
|
|
UpdatedAt time.Time
|
||
|
|
}
|