Files

16 lines
236 B
Go
Raw Permalink Normal View History

package domain
import "time"
type Brand struct {
ID int64
TenantID int64
Name string
Website *string
Description *string
Status string
SortOrder int
CreatedAt time.Time
UpdatedAt time.Time
}