Files
geo/server/internal/tenant/domain/brand.go
T

15 lines
219 B
Go
Raw Normal View History

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