mirror of
https://github.com/zitadel/zitadel.git
synced 2025-01-11 20:03:40 +00:00
d8e42744b4
* fix: move eventstore pkgs * fix: move eventstore pkgs * fix: remove v2 view * fix: remove v2 view
14 lines
200 B
Go
14 lines
200 B
Go
package domain
|
|
|
|
import (
|
|
"github.com/caos/zitadel/internal/eventstore/v1/models"
|
|
)
|
|
|
|
type LabelPolicy struct {
|
|
models.ObjectRoot
|
|
|
|
Default bool
|
|
PrimaryColor string
|
|
SecondaryColor string
|
|
}
|