mirror of
https://github.com/zitadel/zitadel.git
synced 2025-08-13 04:57:33 +00:00
14 lines
227 B
Go
14 lines
227 B
Go
package model
|
|
|
|
import (
|
|
"github.com/zitadel/zitadel/internal/eventstore/v1/models"
|
|
)
|
|
|
|
type DomainPolicy struct {
|
|
models.ObjectRoot
|
|
|
|
State PolicyState
|
|
UserLoginMustBeDomain bool
|
|
Default bool
|
|
}
|