mirror of
https://github.com/zitadel/zitadel.git
synced 2025-03-02 20:11:46 +00:00
14 lines
197 B
Go
14 lines
197 B
Go
![]() |
package domain
|
||
|
|
||
|
import (
|
||
|
"github.com/caos/zitadel/internal/eventstore/models"
|
||
|
)
|
||
|
|
||
|
type LabelPolicy struct {
|
||
|
models.ObjectRoot
|
||
|
|
||
|
Default bool
|
||
|
PrimaryColor string
|
||
|
SecondaryColor string
|
||
|
}
|